コード例 #1
0
ファイル: Syntax.cs プロジェクト: Throttle/compiler
 /// <summary>
 /// Конструктор
 /// </summary>
 public Function(Body body, ParameterCollection parameters, string name, Type type)
 {
     Body = body; Parameters = parameters; Name = name; Type = type;
 }
コード例 #2
0
ファイル: Collections.cs プロジェクト: Throttle/compiler
 public Enumerator(ParameterCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }