Abstract class interface implementaion
Can we implement interface in an abstract class?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rajeesh MenothPosted May 27, 2016, 9:30 AM
Ravi PatelPosted May 27, 2016, 8:19 AM
{
void run();
}
public abstract class Abs:my
{
public void run()
{
Console.WriteLine( " implemented method" );
}
}