In C#, namespaces are used to logically arrange classes, structs, interfaces, enums and delegates. The namespaces in C# can be nested. That means one namespace can contain other namespaces also. The .NET framework already …
Read More »Namespaces and Base Classes in C#
Namespaces in C#2.0
To address all the issues that arise in the previous version of .Net,, C# 2.0 introduced some new features like: 1. Namespace aliasing 2. global :: operator 3. Extern Aliasing Namespace Aliasing …
Read More »The Base Classes In C#
There are huge collections of base classes in .Net, i.e. approximately 3400 classes and there are also a large number of namespaces that contain these classes. We can’t give you the complete coverage of these …
Read More »Arrays in C#
An array is a set of uniform data elements, represented by a single variable name. The individual elements are accessed using the variable name and one or more indexes between square brackets, as given below: …
Read More »