예제 #1
0
        private void OnEvaluationCompleted(EvaluationCompletedEventArgs e)
        {
            var handler = this.EvaluationCompleted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
예제 #2
0
파일: Evaluator.cs 프로젝트: ermau/Instant
 private void OnEvaluationCompleted(EvaluationCompletedEventArgs e)
 {
     var handler = this.EvaluationCompleted;
     if (handler != null)
         handler (this, e);
 }