Junior — Senior
Hiding methods in inheritance chain
livecode
Task condition
Determine what the result will be when calling the method PrintStuff().
class B
{
public void F() {Console.WriteLine("B.F");}
}
class C : B
{
public void F() { Console.Write("C.F");}
public static void // PrintStuff()
{
}
}