Date Wednesday, December 04, 2013 Time Description 10.00 am to 12.00 pm Constructor, Destructor, Inheritance, Constructor in inheritance Learning : It is same as that of function but difference is that it does not have any return type. Its name is same as that of the class, it cannot be inherited. Constructor of a class is expected when object of the class is created usually we put initialisation code in the constructor. Eg. Public class myclass { Public myclass() { //constructor body or initialisation code } } C # supports constructor overloading, i.e we can have constructor with different set of parameter for same class Eg. 1: Public class myclass 2: { 3: Public myclass() 4: { 5: //default constructor 6: } 7: Public myclass(int a, int b) 8: ...