MEJOR SITIO PARA DESARROLLADORES WEB
Lenguaje C#. W3Schools lecciones en español

Ua En De

C# Múltiples interfaces


Múltiples interfaces

Para implementar múltiples interfaces, sepárelas con una coma:

Ejemplo

interface IFirstInterface
{
  void myMethod(); // método de interfaz
}

interface ISecondInterface
{
  void myOtherMethod(); // método de interfaz
}

// Implementar múltiples interfaces
class DemoClass : IFirstInterface, ISecondInterface
{
  public void myMethod()
  {
    Console.WriteLine("Some text..");
  }
  public void myOtherMethod()
  {
    Console.WriteLine("Some other text...");
  }
}

class Program
{
  static void Main(string[] args)
  {
    DemoClass myObj = new DemoClass();
    myObj.myMethod();
    myObj.myOtherMethod();
  }
}

Inténtalo tú mismo »