/// <summary> /// Remove a notifier from the collection.</summary> public void Remove(AgentNotifier notifier) { List.Remove(notifier); }
/// <summary> /// Add a notifier to the collection.</summary> public void Add(AgentNotifier notifier) { List.Add(notifier); }