pocorall.SCM_Notifier.MainForm.ShowNewVersion C# (CSharp) Method

ShowNewVersion() private method

private ShowNewVersion ( ) : void
return void
        private void ShowNewVersion()
        {
            if (MessageBox.Show (
                "New stable version of SCM Notifier is available - v" + lastStableVersion + "\n" +
                "Do you want to go to the project home page?",
                "SCM Notifier",
                MessageBoxButtons.OKCancel, MessageBoxIcon.Information) == DialogResult.OK)
                new AboutForm().ShowDialog();
        }
MainForm