CSL.SettingsHandler.AddDownloadFormat C# (CSharp) Method

AddDownloadFormat() public static method

public static AddDownloadFormat ( string value ) : void
value string
return void
        public static void AddDownloadFormat(string value)
        {
            if (!settings.DownloadFormats.Contains(value))
                settings.DownloadFormats += " " + value;

            settings.Save();
        }