NuGet.SettingsExtensions.DeleteConfigValue C# (CSharp) Method

DeleteConfigValue() public static method

Deletes a config value from settings
public static DeleteConfigValue ( this settings, string key ) : bool
settings this The settings instance to delete the key from.
key string The key to delete.
return bool
        public static bool DeleteConfigValue(this ISettings settings, string key)
        {
            return settings.DeleteValue(ConfigSection, key);
        }
    }