I am new to windows development and I need that.
In php I can do like that:
<?php
exec("second.sh > /dev/null 2>&1")
?>
When I do that the php program call the second.sh program to run and exit without waiting the second.sh exit
I need this behavior in c# program
My second program will run for 5 minutes and exit. I need to make a POST, but I do not want to wait the request to finish to continue the main program, because this request can take 5 min to finish.
Run another program is a 'workaround' I saw on php. The ideal would be call a HttpWebRequest and do not wait it to finish.