#dotnet
Read more stories on Hashnode
Articles with this tag
In this article we are going to cover some advance scenarios where Options pattern is very useful. We have covered the basic understanding of Options...
C# types can be divided mainly into two categories: value types and reference types. In this article, we would be having a closer look at these two...
Access modifiers determine the accessibility of a type or type member, indicating which parts of a C# program can access those types and their...
What is a delegate? a delegate is a reference type variable that holds the reference of a method. C# delegates are similar to the C / C++ equivalent...