The title says it all. I have some code which does
When I open this code from the file by double clicking, it works perfectly fine, loops around, and performs all the functions as intended, however. Whenever I run this file by doing
Process.Run()
on another executable console file. The console file is set to a "Windows Application" so that it does not appear, and allows me to run other programs and functions periodically, all in the background.
This is the code in the file i am trying to open:
while (true) {
//code
}
Process.Run()
, it opens, does nothing, and then closes immediately afterwards.