public abstract class A 
{ 
    public virtual string Print(){ return "A"; }
{ 

public class B : A 
{ 
      public override string Print() { return "B"; } 
} 

public class C : B 
{
     public new string Print() { return "C"; }
}
 
What will be the result of the following code execution?
 
A ac = new C(); 
Console.WriteLine(ac.Print());
 

Слідкуй за CodeGalaxy

Мобільний додаток Beta

Get it on Google Play
Зворотній Зв’язок
Cosmo
Зареєструйся Зараз
або Підпишись на майбутні тести