コード例 #1
0
ファイル: AgentNotifier.cs プロジェクト: dglaser/Agent
 /// <summary>
 /// Remove a notifier from the collection.</summary>
 public void Remove(AgentNotifier notifier)
 {
     List.Remove(notifier);
 }
コード例 #2
0
ファイル: AgentNotifier.cs プロジェクト: dglaser/Agent
 /// <summary>
 /// Add a notifier to the collection.</summary>
 public void Add(AgentNotifier notifier)
 {
     List.Add(notifier);
 }