Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is constructor overloading in c#?

979


Explain jagged arrays in c#?

946


What is the use of dll file in c#?

853


What do you mean by winforms in c#?

910


What is deferred execution?

838


What is new method in c#?

884


What is dataset and dataadapter in c#?

880


What is namespace c#?

884


What is the namespcae generally given to the webpage of the .NET Framework ?

1000


What is jit? What are the different types of jit?

955


Difference between StackPanel and RelativePanel ?

969


What does string format do?

835


Explain dataadapter.update method in .net?

916


What is type class in c#?

932


What is cache memory in c#?

875