1
Reply

Can we implement interface in abstract class?

    Yes we can implement. And the code will go as below, interface hello{void message();}abstract class world:hello{public void message(){Console.WriteLine("HelloWorld");}}