Ejemplo n.º 1
0
 /// <summary>
 /// Remove a notifier from the collection.</summary>
 public void Remove(AgentNotifier notifier)
 {
     notifier.Parent = null;
     List.Remove(notifier);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Add a notifier to the collection.</summary>
 public void Add(AgentNotifier notifier)
 {
     notifier.Parent = Parent;
     List.Add(notifier);
 }