Skip to content

Instantly share code, notes, and snippets.

@zzandy
Created November 1, 2016 11:49
Show Gist options
  • Save zzandy/19169eac6e866f56092ed7a8eae71c99 to your computer and use it in GitHub Desktop.
Save zzandy/19169eac6e866f56092ed7a8eae71c99 to your computer and use it in GitHub Desktop.
public event Action OnEvent;
...
OnEvent += () => Console.WriteLine("#1");
OnEvent += () => Console.WriteLine("#2");
OnEvent += () => { throw new Exception("#3"); };
OnEvent += () => Console.WriteLine("#4");
OnEvent += () => Console.WriteLine("#5");
Console.WriteLine("CP1");
OnEvent();
Console.WriteLine("CP2");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment