Pradeep Yadav
What is Constructor Chaining
By Pradeep Yadav in C# on May 23 2017
  • Pradeep Yadav
    May, 2017 23

    Constructor Chaining is a way to connect two or more classes in a relationship as Inheritance, in Constructor Chaining every child class constructor is mapped to parent class Constructor implicitly by base keyword so when you create an instance of child class to it’ll call parent’s class Constructor without it inheritance is not possible.

    • 1
  • Rajani Pandey
    Jan, 2018 7

    Contstructor chaining is an approach where one constructor can call another constructor in the same class or base class.

    • 0