Submitted Questions

  • What are constructors in .Net

    Abinash Dinakaran

    • Dec 22nd, 2014

    Constructors are the member functions which has same name as class name. Constructors are used to initialize a value for a variable so that we can be able to avoid junk values thrown to a variable.

    sunil

    • Sep 24th, 2014

    Constructor is the special type of methods, which is called when we crate the object for the class.
    Constructor will have same name as class name.
    overloaded constructor can also be there.