/// <summary>
 /// Removes the specified <see cref="FrameworkSetting"/> from the <see cref="ConfigurationElementCollection"/>.
 /// </summary>
 /// <param name="setting">The <see cref="FrameworkSetting"/> to remove.</param>
 public void Remove(FrameworkSetting setting)
 {
     BaseRemove(GetElementKey(setting));
 }
 /// <summary>
 /// Adds the specified <see cref="FrameworkSetting"/> to the <see cref="ConfigurationElementCollection"/>.
 /// </summary>
 /// <param name="setting">The <see cref="FrameworkSetting"/> to add.</param>
 public void Add(FrameworkSetting setting)
 {
     BaseAdd(setting);
 }