When you are starting a process and dont care about the result is this ok?
Process.Start(xxx);
Or should you do this
using (Process.Start(xxx)){}
|
|
When you are starting a process and dont care about the result is this ok?
Or should you do this
|
|||
|
|
Looking at the implementation of the It also cleans up a wait handle that it uses to check if the process has exited. Even if you don't use the |
||
|
|
|
|
The If you don't need to use the returned |
||
|
|
u... – RCIX Nov 4 at 6:05