コード例 #1
0
ファイル: Tail.cs プロジェクト: andalera/TailSentry
 private void InvokeOutputRecievedEvent(OutputRecievedEvent e)
 {
     EventHandler<OutputRecievedEvent> handler = OutputRecievedEvent;
     if (handler != null) handler(this, e);
 }
コード例 #2
0
 void OnOutputRecievedEvent(object sender, OutputRecievedEvent e)
 {
     Console.Write(e.Output + "\n");
 }