/// <summary> /// Removes the specified setting. /// </summary> /// <param name="setting">The setting.</param> public void Remove(CustomSetting setting) { List.Remove(setting); }
/// <summary> /// Sets the custom value. /// </summary> /// <param name="module">The module.</param> /// <param name="key">The key.</param> /// <param name="value">The value.</param> public void SetCustomValue( string module, string key, string value ) { CustomSetting cstm = new CustomSetting( module ); cstm.SetValue( key, value ); Add( cstm ); }
/// <summary> /// Adds the specified setting. /// </summary> /// <param name="setting">The setting.</param> public void Add(CustomSetting setting) { List.Add(setting); }