Skip to content

Instantly share code, notes, and snippets.

@felixlindemann
Created March 3, 2015 23:34
Show Gist options
  • Save felixlindemann/bed6e65edce893747e4b to your computer and use it in GitHub Desktop.
Save felixlindemann/bed6e65edce893747e4b to your computer and use it in GitHub Desktop.
Raise Event
public event RExececutedEventHandler rExec;
protected virtual void CommandExecuted(RExececutedEventArgs e)
{
RExececutedEventHandler handler = rExec;
if (handler != null)
{
handler(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment