예제 #1
0
 /// <summary>
 /// Adds an Custom object to the collection
 /// </summary>
 /// <param name="cust"></param>
 public void Add(Custom cust)
 {
     this.List.Add(cust);
 }
예제 #2
0
 /// <summary>
 /// Removes an Custom object from the collection
 /// </summary>
 /// <param name="cust"></param>
 public void Remove(Custom cust)
 {
     this.List.Remove(cust);
 }