示例#1
0
 public void notify(string result)
 {
     if (NotifyInvoked != null)
     {
         var args = new NotifyInvokedEventArgs { Result = result };
         NotifyInvoked(this, args);
     }
 }
示例#2
0
 public void notify(string result)
 {
     if (NotifyInvoked != null)
     {
         var args = new NotifyInvokedEventArgs {
             Result = result
         };
         NotifyInvoked(this, args);
     }
 }