コード例 #1
0
ファイル: Queue.cs プロジェクト: TashaDexter/DexStudy
 protected void OnQueueIsEmpty()
 {
     if (QueueIsEmpty != null)
     {
         QueueIsEmpty?.Invoke();
     }
 }
コード例 #2
0
 protected virtual void OnQueueIsEmpty()
 {
     QueueIsEmpty?.Invoke(this, EventArgs.Empty);
 }