#csharp
Read more stories on Hashnode
Articles with this tag
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...
While working with C# datatypes, developers often needs to convert value types to reference type or vice-versa. The process of converting value type...
💡 Exception = an unexpected event that occurred during program execution that disrupts the desired flow of the program. As mentioned above,...
In this tutorial, we would learn about abstract keyword in c# programming language. abstract: This modifier indicates that thing being modified has a...