BigRedButtonOfDeath.WPF.MainWindow.AlertAboutArtemisVersionConflict C# (CSharp) Méthode

AlertAboutArtemisVersionConflict() public méthode

public AlertAboutArtemisVersionConflict ( string message ) : void
message string
Résultat 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;