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 constructor overloading in c#?
Explain jagged arrays in c#?
What is the use of dll file in c#?
What do you mean by winforms in c#?
What is deferred execution?
What is new method in c#?
What is dataset and dataadapter in c#?
What is namespace c#?
What is the namespcae generally given to the webpage of the .NET Framework ?
What is jit? What are the different types of jit?
Difference between StackPanel and RelativePanel ?
What does string format do?
Explain dataadapter.update method in .net?
What is type class in c#?
What is cache memory in c#?