ADarch dspinarchdsp.hashnode.dev·Jul 26, 2023 · 3 min readDirectory vs FolderBrief comparison table DirectoryFolder Need to map physical file system space occupiedNo need to be space not occupied container of files and folder, sub directorieslogical group of files 4KB size(inode)no specific size OS create, delet...00
ADarch dspinarchdsp.hashnode.dev·Jun 21, 2023 · 1 min readGPG My personal understand of gpg keygrip, fingerprintThe picture above was made to understand the concept of gpg key structure, but it could be theoretically wrong because it was drawn with my personal interpretation. It seems that further updates are needed. A GPG key can also add a subkey and has th...00
ADarch dspinarchdsp.hashnode.dev·May 18, 2023 · 1 min read2. Basic Syntaximport namespace Global import C# >=10 support global keyword. If import namespace with global keyword, that namespace can available over all .cs file. # GlobalUsings.cs global using System; It can be done by adding ImplicitUsings attribute on the ....00
ADarch dspinarchdsp.hashnode.dev·May 17, 2023 · 3 min read1. Start 'Hello world!'Set up the environment Download SDK Download dotnet SDK here. %[https://dotnet.microsoft.com/] You can check your SDK info on PowerShell by below command. dotnet --info Command output $ dotnet --info .NET SDK: Version: 7.0.300-preview.23122.5 Co...00
ADarch dspinarchdsp.hashnode.dev·Jan 17, 2023 · 1 min readC# PreprocessorError and Warning #error: Invoke compiler error with message #warning: Invoke compiler warning with message #warning This is warning #error This is error Output Because of error directive, dotnet build Program.cs will print below output. $ dotne...00