top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is the Constructor Chaining in C#?

0 votes
130 views
What is the Constructor Chaining in C#?
posted Mar 31, 2017 by Pooja Bhanout

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

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.

answer Mar 31, 2017 by Shweta Singh
...