BigRedButtonOfDeath.WPF.MainWindow.AlertAboutArtemisVersionConflict C# (CSharp) Метод

AlertAboutArtemisVersionConflict() публичный Метод

public AlertAboutArtemisVersionConflict ( string message ) : void
message string
Результат void
        public void AlertAboutArtemisVersionConflict(string message)
        {
            if (this.Dispatcher != System.Windows.Threading.Dispatcher.CurrentDispatcher)
            {
                this.Dispatcher.Invoke(new Action<string>(AlertAboutArtemisVersionConflict), message);
            }
            else
            {
                MessageBox.Show(message);
            }
        }
        PlayerShip[] ships = null;