/// <summary> /// конструктор /// </summary> public Parameter(string name, Type type, PassMethod passMethod) { Name = name; Type = type; PassMethod = passMethod; }
/// <summary> /// конструктор /// </summary> public Argument(Expression value, PassMethod passMethod) { Value = value; PassMethod = passMethod; }