Пример #1
0
 /// <summary>
 /// This method will add an exisitng EventCollection to the EventCollection
 /// object within this class. Any previous clustering information will be
 /// removed.
 /// </summary>
 /// <param name="collection">The EventCollection to be added</param>
 public void AddRange(EventCollection collection)
 {
     // Remove any previous clustering data
     collection.ClearAllClusterData();
     // Add the events to the EventCollection
     Events.AddRange(collection);
 }
 /// <summary>
 /// This method will add an exisitng EventCollection to the EventCollection 
 /// object within this class. Any previous clustering information will be 
 /// removed.
 /// </summary>
 /// <param name="collection">The EventCollection to be added</param>
 public void AddRange(EventCollection collection)
 {
     // Remove any previous clustering data
       collection.ClearAllClusterData();
       // Add the events to the EventCollection
       Events.AddRange(collection);
 }