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