Ejemplo n.º 1
0
 internal void OnExcludeFileEvent()
 {
     AbortAndExcludeEvent = delegate()
     {
         Console.WriteLine("File Has been excluded.");
     };
     AbortAndExcludeEvent?.Invoke();
 }
Ejemplo n.º 2
0
 internal void TriggerInteruptEvent()
 {
     AbortAndExcludeEvent = delegate()
     {
         Console.WriteLine("System Aborted.");
     };
     AbortAndExcludeEvent?.Invoke();
 }