public static void SetValue <T>(this IIniSection iniSection, string propertyName, T propertyValue) { iniSection.AddProperty(new IniProperty(propertyName, Convert.ToString(propertyValue, CultureInfo.InvariantCulture))); }
public static void AddProperty(this IIniSection iniSection, string name, string value) { iniSection.AddProperty(new IniProperty(name, value)); }