tag

home / developersection / tag

Delegates
.net 23-Jul-2010
Delegates

Delegate is type-safe object which can point to method or multiple methods (Multicasting) of application.

Connection String
.net 23-Jul-2010
Connection String

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 Collection
.net 22-Jul-2010
Garbage Collection

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
.net 22-Jul-2010
Extension Method

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

DLL Hell
.net 22-Jul-2010
DLL Hell

DLL Hell refers to the set of problems caused when multiple applications attempt to share a common component like a dynamic link library (DLL) or a Component Object Model (COM) class.

Virtual Directory in IIS 7
.net 21-Jul-2010
Virtual Directory in IIS 7

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
.net 20-Jul-2010
Global Assembly Cache

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

Garbage Collection in .net
.net 20-Jul-2010
Garbage Collection in .net

The garbage collector in .Net takes care of bulk of the memory management responsibility, freeing up the developer to focus on core issues.

Value Type and Boxing
.net 17-Jul-2010
Value Type and Boxing

The operation of converting value type to reference type is called Boxing and the reverse operation is called Unboxing. Boxingint Val = 1; //Value

Polymorphism
.net 17-Jul-2010
Polymorphism

 When a message can be processed in different ways is called polymorphism.Polymorphism is of two types: ·    Overloading: In method overloading meth

Partial Class
.net 15-Jul-2010
Partial Class

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.

.Net Framework
.net 15-Jul-2010
.Net Framework

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...