Skip to content

Instantly share code, notes, and snippets.

@NZSmartie
Created August 18, 2017 02:22
Show Gist options
  • Save NZSmartie/49d1e9ab5ee26a5b7460bb4f3d17aa1b to your computer and use it in GitHub Desktop.
Save NZSmartie/49d1e9ab5ee26a5b7460bb4f3d17aa1b to your computer and use it in GitHub Desktop.
public class MyClass
{
public event EventHandler OnSomeEvent;
 
public void TriggerSomeEvent()
{
  try
  {
  OnSomeEvent?.Invoke(this, new EventArgs());
  }
  catch(Exception ex)
  {
  // Handle exception things here
  }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment