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