home / developersection / tag
When application connects to a database or a data file, ADO or ADO.Net utilize a provider to do the job. The connection string contains the information that the provider needs to know to be able to establish a connection to the database or the data f
Garbage Collector is a program, provided by .net; runs in background as a low priority thread and keep track of those objects that are no longer referred by any reference by making them a “dirty objects".
Extension method in C# provides a way to add our own method to class without inheriting it.All we have to do to create extension method is to creat
A virtual directory is a directory name that you specify in IIS and map to a physical directory on a local or remote server. The directory name then
Global Assembly Cache is a machine-wide store used to hold assemblies that are intended to be shared by several applications on the machine. Each computer where the common language runtime (CLR) is installed has a global assembly cache. The global as
The garbage collector in .Net takes care of bulk of the memory management responsibility, freeing up the developer to focus on core issues.
The operation of converting value type to reference type is called Boxing and the reverse operation is called Unboxing. Boxingint Val = 1; //Value
When a message can be processed in different ways is called polymorphism.Polymorphism is of two types: · Overloading: In method overloading meth
When we want to split class we use partial keyword. The main advantage of partial class is that more than one programmer can work on same class at a time i.e. they can implement same class.
The .NET Framework is Microsoft's Managed Code programming model for building applications on Windows clients, servers, and mobile or embedded devices. Microsoft's .NET Framework is a software technology that is available with several Microsoft...