Skip to content

Instantly share code, notes, and snippets.

@dtchepak
Created December 5, 2013 03:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dtchepak/7799703 to your computer and use it in GitHub Desktop.
Save dtchepak/7799703 to your computer and use it in GitHub Desktop.
void Main()
{
var x = new Thing();
Action<string> onFoo = s => Console.WriteLine (s);
x.OnFoo += onFoo.Invoke;
x.RaiseEvent("a");
x.RaiseEvent("b");
x.OnFoo -= onFoo.Invoke;
x.RaiseEvent("c");
}
delegate void Foo(string s);
class Thing {
public event Foo OnFoo;
public void RaiseEvent(string s) {
var handler = OnFoo;
if (handler != null) {
var subscribers = handler.GetInvocationList().Length;
Console.WriteLine ("subscribers: " + subscribers);
handler(s);
} else Console.WriteLine ("no subscribers");
}
}
/* OUTPUT:
subscribers: 1
a
subscribers: 1
b
no subscribers
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment