Exemplo n.º 1
0
 /// <summary>
 /// Creates an element collection element object.
 /// </summary>
 public Element(ElementCollection elements)
 {
     ElementType = ElementType.Collection;
     Elements = elements;
 }
Exemplo n.º 2
0
 public Enumerator(ElementCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }