fork download
  1. using System;
  2.  
  3. public class ClaseConcreta : Interfaz1, Interfaz2
  4. {
  5. // ¿Qué pasa si hacemos esto?
  6.  
  7. public void Metodo()
  8. {
  9. // Implementación;
  10. }
  11.  
  12. int Interfaz2.Metodo()
  13. {
  14. return 0;
  15. }
  16.  
  17. public static void Main()
  18. {
  19.  
  20. }
  21. }
  22.  
  23. public interface Interfaz1
  24. {
  25. void Metodo();
  26. }
  27.  
  28. public interface Interfaz2
  29. {
  30. int Metodo();
  31. }
Success #stdin #stdout 0.01s 33528KB
stdin
Standard input is empty
stdout
Standard output is empty