public Action OnBeforeEvaluationEvent; ... if ( OnBeforeEvaluationEvent != null ) OnBeforeEvaluationEvent();2) Custom event with parameter(s):
public delegate void OnAfterEvaluatingDelegate( CodeConditionGroup _conditionGroup ); public event OnAfterEvaluatingDelegate OnAfterEvaluationgEvent; if ( OnAfterEvaluationgEvent != null ) OnAfterEvaluationgEvent( condition );
No comments:
Post a Comment