my method...
private static void RunAndExit(string command)
{
var processInfo = new ProcessStartInfo
{
FileName = "cmd.exe",
Arguments = "/c " + command,
CreateNoWindow = false,
UseShellExecute = true,
RedirectStandardError = false,
RedirectStandardOutput = false
};
}
I want the process started by RunAndExit() to continue to run after the app containing this method has exited. Thanks for any help!