pocorall.SCM_Notifier.MainForm.ShowNewVersion C# (CSharp) 메소드

ShowNewVersion() 개인적인 메소드

private ShowNewVersion ( ) : void
리턴 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