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

Explain the three services model (three-tier application). Presentation (ui), business (logic and underlying code) and data (from storage or other sources).

961


What is an inheritance ?Give an example in which inheritance is used?

1078


What is a generic method?

1033


What is an extension method in c#?

1034


What is the difference between function and method in c#?

954


How do I unload an assembly?

999


What is dictionary collection in c#?

967


Which is faster dictionary or hashtable?

907


How Global.asax is used ?

1099


Explain the difference between event and a delegate in c#?

1009


Why are dynamic link library used over static one?

1022


Why data types are important?

1011


Why c# is type safe?

984


What is tpl in c#?

932


Explain how to use an extender provider in the project.

1033