InterviewSolution
| 1. |
If A Child Class Instance Is Created, Which Class Constructor Is Called First - Base Class Or Child Class? |
|
Answer» When an instance of a child class is created, the base class constructor is called before the child class constructor. An example is SHOWN below. using System; When an instance of a child class is created, the base class constructor is called before the child class constructor. An example is shown below. using System; |
|