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...

What is Interface? Explain with an example.

Answer Posted / dharmendra kumar

Interface is a syntactical contract that all the derived
classes should follow.

public interface MotorStateObject
{
int State{ get;}

void Running();

void Stop();

int Speed { set;get; }

}
public class Car : MotorStateObject
{ .....
}

public class Bike : MotorStateObject
{......
}

public class Bus : MotorStateObject
{......
}

public class MotorState()
{
public void applybrake(MotorStateObject Object)

{
MotorStateObject.Stop();
}
}

Is This Answer Correct ?    5 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the default scope of a class in c#?

918


What is lambda expression in c#?

916


What is difference between function and method in c#?

870


What is a nested type. Give an example?

989


What is the difference between an application domain and a process?

972


What is enumerable in c#?

854


What is collection class c#?

885


What is the difference between field and property in c#?

901


Explain the ways to deploy an assembly?

947


How long will it take to learn c#?

934


What is the difference between finalize() and dispose() methods?

956


What is c# console application?

907


i want o/p 011242110 in c# code.

2031


Why dataset is used in c#?

923


What is native image generator (ngen.exe)?

1195