コード例 #1
0
 public BaseParameterSetting(ParameterSettingType type, ParameterSettingShowType showType, string name, object value) : this(type, name, value)
 {
     ShowType = showType;
 }
コード例 #2
0
 public BaseParameterSetting(ParameterSettingType type, string name, object value)
 {
     Type  = type;
     Name  = name;
     Value = value;
 }