Ejemplo n.º 1
0
 /// <summary>
 /// Adds the elements of another UpdateTermCollection to the end of this UpdateTermCollection.
 /// </summary>
 /// <param name="items">
 /// The UpdateTermCollection whose elements are to be added to the end of this UpdateTermCollection.
 /// </param>
 public virtual void AddRange(UpdateTermCollection items)
 {
     foreach (UpdateTerm item in items)
     {
         this.List.Add(item);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the UpdateTermCollection class, containing elements
 /// copied from another instance of UpdateTermCollection
 /// </summary>
 /// <param name="items">
 /// The UpdateTermCollection whose elements are to be added to the new UpdateTermCollection.
 /// </param>
 public UpdateTermCollection(UpdateTermCollection items)
 {
     this.AddRange(items);
 }
Ejemplo n.º 3
0
 /// <summary></summary>
 public Enumerator(UpdateTermCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }