Is it possible to inherit multiple interfaces in C#.NET? Yes
Interface contains all abstract methods. Classes and Structs inherits it and provide an implementation for each interface member declared.
The keyword interface creates an interface. They are public by default.
Multiple Inheritance in C# is possible using interface which contains all abstract methods. The implementation for each interface member are done in the class inherited it.
Example
using System; interface abc { void Display(); } interface xyz { void Display(); } class Test : abc, xyz { void abc.Display() { Console.WriteLine(""); } }
|