CSL.SettingsHandler.RemoveDownloadFormat C# (CSharp) Method

RemoveDownloadFormat() public static method

public static RemoveDownloadFormat ( string value ) : void
value string
return void
        public static void RemoveDownloadFormat(string value)
        {
            if (settings.DownloadFormats.Contains(value))
                settings.DownloadFormats = settings.DownloadFormats.Replace(value, "");

            settings.Save();
        }