4
Answers

Where you used interface in your .net project?

Anjali Khan

Anjali Khan

7y
215
1
Dear frnds I know about an interface but here I want to know where we used interface in our project.i found in Many website but didn't understand properly.plesse provide example with explain where you people used interface in your project? Please help me on this because many interviewer asked me but not didn't gave the ans in proper way.
Answers (4)
0
Gautam Parmar

Gautam Parmar

NA 872 2.2k 7y
Hi Anjali,
 
Interface allows you to achieve multiple class inheritance.. Here are two Interface IA and IB which are inharited with there respective class.
  1. interface IA  
  2.     {  
  3.         void AMethod();  
  4.     }  
  5.     interface IB  
  6.     {  
  7.         void BMethod();  
  8.     }  
  9.     class A : IA  
  10.     {  
  11.         public void AMethod()  
  12.         {  
  13.             Console.WriteLine("A");  
  14.         }  
  15.     }  
  16.     class B : IB  
  17.     {  
  18.         public void BMethod()  
  19.         {  
  20.             Console.WriteLine("A");  
  21.         }  
  22.     }  
 Now to achieve multiple class inheritance will need to create master class which AB that class will have object of A & B Class and inherited with both interface
  1. class AB : IA, IB  
  2.     {  
  3.         A a = new A();  
  4.         B b = new B();  
  5.   
  6.         public void AMethod()  
  7.         {  
  8.             a.AMethod();  
  9.         }  
  10.   
  11.         public void BMethod()  
  12.         {  
  13.             b.BMethod();  
  14.         }  
  15.     }  
 So now AB Class can use method of both class 
  1. public static void Main()  
  2.         {  
  3.             AB ab = new AB();  
  4.             ab.AMethod();  
  5.             ab.BMethod();  
  6.         }  
 
0
Sundar

Sundar

NA 9.6k 94.5k 7y
If you want to do Multiple Inherit, then you have to use Interface.
 
http://www.dotnetfunda.com/forums/show/2476/in-live-projectswhere-we-will-use-abstract-class-and-interface-classes
https://www.codeproject.com/Questions/341625/Real-time-example-of-interface
0
Ankit Sharma

Ankit Sharma

NA 8.8k 141k 7y
Hi,
You can get better understanding of interface on this link
 
http://www.c-sharpcorner.com/UploadFile/sekarbalag/interface-best-example-in-csharp/
 
https://dzone.com/articles/c-interfaces-what-are-they-and 
0
Sandy Bhardwaj

Sandy Bhardwaj

NA 117 606 7y
http://www.dotnetfunda.com/forums/show/2476/in-live-projectswhere-we-will-use-abstract-class-and-interface-classes
 
 https://www.codeproject.com/Questions/341625/Real-time-example-of-interface
 
// Check this link ..........