home / developersection / category
Unicode character string data types are used to store Unicode character strings. SQL Server 2005 supports the following Unicode character string data
A destructor is a function with the same name as the name of a class but starting with the character ~. A constructor gets called at birth whereas a d
Hashtable in C# represents a collection of key/value pairs which maps keys to value. Any non-null object can be used as a key but a value can. We can
SortedList sl = new SortedList(); //creating sorted list. private voidbtnAdd_Click(object sender, EventArgs e) { if(txtValue.Text != "" &&txtKey.T
Multithreading is a feature provided by the operating system that enables your application to have more than on execution path
Method overriding isthe mechanism same method name with same arguments and return types associatedin a class and its subclass. Overriding is mainly u
When a message can be processed in different ways is called polymorphism. Polymorphism means many forms. Polymorphism is one of the fundamental conce
In object-oriented programming, inheritance is the concept that when a class of objects is defined, any subclass that is defined can inherit the definitions of one or more general classes
A C# class can contain both static and non-static members.When we declare a member with the help of the keyword static, it becomes astatic member. A s
Access modifiers are an integral part of object – orientedprogramming. They support the concept of encapsulation, which promotes the ideaof hiding fun
An array is a series of elements of the same type placed in contiguous memory locations that can be individually referenced by adding an index to a unique identifier.