skip to Main Content

C# Stop process started by my own process – Debian

I made a launcher for my ARK Server where I can easily change my settings and start. I start the server with this: Process serverprocess = new Process(); serverprocess.StartInfo.FileName = Path.GetFileName(serverpath); serverprocess.StartInfo.Arguments = launch; serverprocess.StartInfo.UseShellExecute = false; serverprocess.Start(); serverprocess.WaitForExit(); But…

VIEW QUESTION
Back To Top
Search