Ejemplo n.º 1
0
 public virtual void AddRange(CaseTermCollection items)
 {
     foreach (CaseTerm term in items)
     {
         base.List.Add(term);
     }
 }
Ejemplo n.º 2
0
 public Enumerator(CaseTermCollection collection)
 {
     this.wrapped = collection.GetEnumerator();
 }
Ejemplo n.º 3
0
 public CaseTermCollection(CaseTermCollection items)
 {
     this.AddRange(items);
 }