1
Reply

Can we implement interface in abstract class?

Avikshith Aradhya

Avikshith Aradhya

May 30, 2016
197
0

    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");}}

    Avikshith Aradhya
    May 30, 2016
    0