예제 #1
0
파일: Tail.cs 프로젝트: andalera/TailSentry
 private void InvokeOutputRecievedEvent(OutputRecievedEvent e)
 {
     EventHandler<OutputRecievedEvent> handler = OutputRecievedEvent;
     if (handler != null) handler(this, e);
 }
 void OnOutputRecievedEvent(object sender, OutputRecievedEvent e)
 {
     Console.Write(e.Output + "\n");
 }