예제 #1
0
파일: Syntax.cs 프로젝트: Throttle/compiler
 /// <summary>
 /// Creates an element collection element object.
 /// </summary>
 public Element(ElementCollection elements)
 {
     ElementType = ElementType.Collection;
     Elements = elements;
 }
예제 #2
0
 public Enumerator(ElementCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }