Created
March 3, 2015 23:34
-
-
Save felixlindemann/bed6e65edce893747e4b to your computer and use it in GitHub Desktop.
Raise Event
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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