コード例 #1
0
 public static void SetValue <T>(this IIniSection iniSection, string propertyName, T propertyValue)
 {
     iniSection.AddProperty(new IniProperty(propertyName, Convert.ToString(propertyValue, CultureInfo.InvariantCulture)));
 }
コード例 #2
0
 public static void AddProperty(this IIniSection iniSection, string name, string value)
 {
     iniSection.AddProperty(new IniProperty(name, value));
 }