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 the difference between list and arraylist c#?

1047


What is the different types of private assembly and shared assembly?

1012


To catch any possible exception What is the C# syntax written ?

1000


Can you have more than one namespace in c#?

946


What is the difference between IEnumerator and IEnumerable?

1176


What's the difference between class and object?

993


What is fcl in c#?

875


What are callback methods in c#?

929


What is disco?

932


What is collection class c#?

918


How long can a string be c#?

907


Compare and contrast between the System.Array.CopyTo() and Clone()?

981


What are the uses of delegates in c#?

1048


What is class sortedlist underneath?

956


To create a localized application which namespaces are necessary?

986