0
kicks
Understanding C# Constructors-CodeGain
Constructor is a special kind of method which have name same as that of class they belong and gets executed when its (class) object is created.In other words a constructor is a class default method that gets automatically executed whenever class’s object is created or whenever class is initialized.