InterviewSolution
| 1. |
Can A Child Class Call The Constructor Of A Base Class? |
|
Answer» YES, a child class can call the constructor of a BASE class by using the base keyword as shown in the example below. using SYSTEM; Yes, a child class can call the constructor of a base class by using the base keyword as shown in the example below. using System; |
|