Wednesday, 4 February 2015

Tuesday, 3 February 2015

Constructor types with example programs in C#.NET

Constructor is a special method of a class which will invoke automatically whenever instance or object of class is created. Constructors are responsible for object initialization and memory allocation of its class. If we create any class without constructor, the compiler will automatically create one default constructor for that class. There is always at least one constructor in every class. Here you...