C# Concepts in depth
C# Concepts in depth
C# is a powerful object-oriented programming language used to build a variety of applications, from web applications to desktop applications and games.
In this article, you can find the most commonly asked C# Interview Questions on Abstract Classes.
In C#, Abstract classes are classes that cannot be instantiated, but they can be used as a base class for other classes.
Method shadowing is a technique in C# where a derived class declares a method with the same name and signature as a method in the base class, effectively ...
In this article we will go one step further and understand how to make code readable by creating namespace alias qualifier in C#.
The NuGet repository has an extended package System.ValueTuple which implement the underlying types for tuples in C# and Visual Basic.
Tuples are useful collection types they allow method to return more than one value. This is the improvement provided in c# version #7. Prior to this, a method ...
The post Visual Studio 2012 IDE versions have unique coding experience where developer can use the C# code snippet (usually called as short form of the code) ...
In this article, learn about one of the powerful feature by visual studio that boost your coding speed. The code snippets (usually called as short form of the ...
Attributes provide a powerful method of associating declarative information in C# code. In this article, learn how to use DubuggerHidden attribute which hides ...