In this program, You will learn how to implement method overriding in C#.
class A { public virtual void display() { } }
class B : A { public override void display() { } }
using System;
public class A
{
public virtual void display()
{
Console.WriteLine("A is called here");
}
}
public class B : A
{
public override void display()
{
Console.WriteLine("B is called here");
}
public static void Main(string[] args)
{
B t1 = new B();
t1.display();
}
}
B is called here