BigRedButtonOfDeath.Forms.Form1.AlertAboutArtemisVersionConflict C# (CSharp) Method

AlertAboutArtemisVersionConflict() public method

public AlertAboutArtemisVersionConflict ( string message ) : void
message string
return void
        public void AlertAboutArtemisVersionConflict(string message)
        {
            if (this.InvokeRequired)
            {
                this.BeginInvoke(new Action<string>(AlertAboutArtemisVersionConflict), message);
            }
            else
            {
                MessageBox.Show(message, "Big Red Button of Death!", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1, MessageBoxOptions.DefaultDesktopOnly);
            }
        }