コード例 #1
0
ファイル: OutputCollector.cs プロジェクト: geryxyz/akindness
 void Enqueue(CommandOutput output)
 {
     outputs.Enqueue(output);
     NewOutputReceived.Raise(this, new EventArgs( ));
 }
コード例 #2
0
 void collector_NewOutputReceived(object sender, EventArgs e)
 {
     NewOutputReceived.Raise(this, new EventArgs <OutputCollector>(sender as OutputCollector));
 }