コード例 #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
ファイル: Collections.cs プロジェクト: Throttle/compiler
 public Enumerator(ElementCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }