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

Is string value type c#?

910


Is string nullable in c#?

968


What is use of private class in c#?

990


What is interface used in c#?

1025


What is the difference between list and arraylist in c#?

868


What are the steps for creating clr trigger

1046


What are abstract classes in c#?

907


Is hashset ordered c#?

964


What is better C# or VB.NET?

947


What is sql transaction in c#?

895


To whom a method is accesssed if it is marked as protected internal ?

1088


What can we do to handle multiple exceptions?

1040


What is lazy loading c#?

1040


Does c# have functions?

889


Is void a class?

871