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 finally and finalize block?

891


What are the properties in c#?

876


What is use of FormBoarderStyle Propertie

873


What is assembly c#?

837


What is difference between a constant and read-only in C#?

912


What is a singleton unity?

920


What is the purpose of reserved word using in c#?

881


How does the clr work?

856


What is a protected class c#?

840


What is “using” statement in c#?

950


what is object-oriented programming (oop) language?

817


What are the uses of delegates in c#?

989


Overloaded constructor will call default constructor internally?

986


What is string pool in c#?

946


What is verbatim string?

872