3 followers
C# / Delphi Developer | JavaScript enthusiastic
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...
Introduction In the world of programming, Delphi has long been a popular choice for developing Windows applications. Known for its robustness and...
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,...