C# Program using abstract class and method


In this program, You will learn how to implement abstract class and method in C#.


public abstract class A { 
    public abstract void msg();
}

Example: How to implement abstract class and method in C#.

using System;
public abstract class A
{
	public abstract void msg();
}

public class B : A
{
	public override void msg()
	{
		Console.WriteLine("msg is implemented here");
	}

	public static void Main(string[] args)
	{
		A t1 = new B();
		t1.msg();
	}
}

Output:

msg is implemented here