When we want to store values of same data type then we create number of variables of same data type which reduce the performance of application as well as efficiency.
Whenever you want to store values in a single row then we follow the concept of single dimension array. In a single dimension array we need only one index to access the member of array.
When we want to store the information in the format of rows and columns then we use the concept of multidimensional array. Best example of multidimensional array is Microsoft Excel in which all the information is stored in the format of rows and colu
Whenever we want to store the information in the hierarchical format or parent child relationship then we use the concept of Jagged Array. Jagged array is defined as array of array. When we used concept of Jagged array then firstly we create parents
Collection classes are used for data storage and manipulate (sort, insert, remove etc) the data. Most of the collection classes implement the same in
The .NET Framework is the infrastructure for the Microsoft .NET platform. The .NET Framework is an environment for building, deploying, and running Web applications and Web Services.
Multithreading is a feature provided by the operating system that enables your application to have more than on execution path at the same time. We us
Delegates are references to methods. So we have used to references to object, e.g. Employee emp = new Employee ();Here emp is a reference to an objec
The Microsoft .net framework is a complete software package that can be installed on the computer running on the Microsoft windows operating system. The component that make the .net platform are collectively called .net framewor
“Polymorphism means one name multiple forms”. Using this feature we can make more than one method using the same name. Polymorphism can be achieved in two ways method overloading and method overriding.
Namespaces are program elements designed to help us organize our programs. They also provide assistance in avoiding name clashes between two sets of code.
A namespace is a method of organizing a group of assemblies, classes, or types. A namespace acts as a container, like a folder, for classes organized into groups usually based on functionality.