AutoWikiBrowser.MainForm.RunUpdater C# (CSharp) Method

RunUpdater() private method

private RunUpdater ( ) : void
return void
        private void RunUpdater()
        {
            string file = Path.Combine(Path.GetDirectoryName(Application.ExecutablePath), "AWBUpdater.exe");

            if (!File.Exists(file))
            {
                MessageBox.Show("Updater doesn't exist, therefore cannot be run");
                return;
            }

            Process.Start(file);
        }
MainForm