AutoWikiBrowser.MainForm.OldVersion C# (CSharp) Метод

OldVersion() приватный Метод

private OldVersion ( ) : void
Результат void
        private void OldVersion()
        {
            lblUserName.BackColor = Color.Red;
            DisableButtons();

            switch (
                MessageBox.Show(
                    "This version of AWB is not enabled, please download the newest version. If you have the newest version, check that Wikipedia is online.\r\n\r\nPlease press \"Yes\" to run the AutoUpdater, \"No\" to load the download page and update manually, or \"Cancel\" to not update (but you will not be able to edit).",
                    "Problem", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Information))
            {
                case DialogResult.Yes:
                    RunUpdater();
                    break;
                case DialogResult.No:
                    Tools.OpenURLInBrowser("https://sourceforge.net/projects/autowikibrowser/files/");
                    break;
            }
        }
MainForm