private void SetValue(Arg arg, object value) { PropertyInfo propertyInfo = arg.GetType().GetProperty("Value"); propertyInfo.SetValue(arg, Convert.ChangeType(value, propertyInfo.PropertyType), null); }
public void Add(Arg arg) { _args.Add(arg); }