Can we implement interface in abstract class?
Avikshith Aradhya
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");}}