Ejemplo n.º 1
0
 /// <summary>
 /// Конструктор
 /// </summary>
 public Function(Body body, ParameterCollection parameters, string name, Type type)
 {
     Body = body; Parameters = parameters; Name = name; Type = type;
 }
Ejemplo n.º 2
0
 public Enumerator(ParameterCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }