I'm wondering if it's possible to kill a python script using C#.
In the small application I'm currently developing, a python application launches to localhost:portnumber. The portnumber of the application is always the same.
Is it possible, when the application is already running (I'm checking that by getting a list of ports currently in use), to kill it using some sort of command?
I've already found out that, in case it is not running, I can start the application using Process.Start();