Advertisement
Fhernd

ClasePrincipal.cs

Jul 18th, 2014
607
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.61 KB | None | 0 0
  1. using System;
  2.  
  3. public delegate void MiDelegado();   // declaración de delegado
  4.  
  5. public interface I
  6. {
  7.    event MiDelegado MiEvento;
  8.    void Activar();
  9. }
  10.  
  11. public class MiClase: I
  12. {
  13.    public event MiDelegado MiEvento;
  14.  
  15.    public void Activar()
  16.    {
  17.       if (MiEvento != null)
  18.          MiEvento();
  19.    }
  20. }
  21.  
  22. public class ClasePrincipal
  23. {
  24.    static private void f()
  25.    {
  26.       Console.WriteLine("Este método es llamado cuando el evento ocurre.");
  27.    }
  28.  
  29.    static public void Main ()
  30.    {
  31.       I i = new MiClase();
  32.  
  33.       i.MiEvento += new MiDelegado(f);
  34.       i.Activar();
  35.    }
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement