コード例 #1
0
ファイル: BlockPair.cs プロジェクト: VaughanJ/TDDBlocks
 public void BothBlocksStopped(object sender, BothBlocksStoppedHandlerArgs args)
 {
     _bothBlocksStoppedTest = true;
 }
コード例 #2
0
ファイル: BlockPair.cs プロジェクト: VaughanJ/TDDBlocks
 protected void OnStatusChange(object sender, BothBlocksStoppedHandlerArgs args)
 {
     if (BothBlocksStopped != null)
     {
         BothBlocksStopped(this, args);
     }
 }