CSL.SettingsHandler.RemoveDownloadFormat C# (CSharp) 메소드

RemoveDownloadFormat() 공개 정적인 메소드

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

            settings.Save();
        }