CSL.SettingsHandler.RemoveDownloadFormat C# (CSharp) Méthode

RemoveDownloadFormat() public static méthode

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

            settings.Save();
        }