Wondering what the difference is between the following:
Case 1: Base Class
public void DoIt();
Case 1: Inherited class
<
If keyword override is used in derive class then its override the parent method.
override
If Keyword new is used in derive class then derive method hided by parent method.
new