So i found
System.Diagnostics.Process.Start()
But, then i want to close app which started it (it’s needed for me to launcher connect to server, launch game and close itself) so it doesn’t work.
My app:
public partial class MainWindow : Window
{
Process.Start("xnagame.exe", "12345678");
this.Close();
}
Name the process so you have a handle to close it. Not all processes close gracefully.