Beginner
C#
Q29 / 100
What does the base keyword do?
Correct! Well done.
Incorrect.
The correct answer is B) Refers to the parent class, used to call parent constructors or overridden methods
B
Correct Answer
Refers to the parent class, used to call parent constructors or overridden methods
Explanation
base.Method() calls the overridden parent method. base(args) in a constructor calls the parent constructor.
Progress
29/100