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 / srinivasa reddy

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace InterfaceExample
{
interface IA
{
void MethodA();
}
class Program : IA
{
static void Main(string[] args)
{
IA InterfaceA = new Program();
InterfaceA.MethodA();
Console.ReadKey();
}

void IA.MethodA()
{
Console.WriteLine("This is a test");
}

}
}

Is This Answer Correct ?    6 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is IDisposal interface

1088


Explain different properties of object oriented systems.

908


What is c# entity framework?

844


What is the extension of c# file?

917


Name the property of the textbox which cannot be changed at runtime?

912


What is garbage collection? How to force garbage collector to run?

842


Why do we need private constructor in c#?

827


What is difference between dictionary and list in c#?

832


Why do I get a "cs5001: does not have an entry point defined" error when compiling?

939


What is default boolean value in c#?

913


Which namespaces are necessary to create a localized application?

1011


Is c# a strongly-typed language?

924


What is difference between new and override in c#?

799


What are types in c#?

854


What is console based application?

906