How do you create multiple inheritance in C#?
Answer Posted / frank
using System;
interface Interdemo
{
void Show();
}
class Interimp:Interdemo
{
public void Show()
{
Console.WriteLine("Show() method Implemented");
}
public static void Main(string[] args)
{
Interimp inter = new Interimp();
inter.Show();
}
}
| Is This Answer Correct ? | 36 Yes | 36 No |
Post New Answer View All Answers
What is the difference between finally and finalize block?
What are the properties in c#?
What is use of FormBoarderStyle Propertie
What is assembly c#?
What is difference between a constant and read-only in C#?
What is a singleton unity?
What is the purpose of reserved word using in c#?
How does the clr work?
What is a protected class c#?
What is “using” statement in c#?
what is object-oriented programming (oop) language?
What are the uses of delegates in c#?
Overloaded constructor will call default constructor internally?
What is string pool in c#?
What is verbatim string?