How do I programmatically use the "using" keyword in C#? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T21:56:44Z http://stackoverflow.com/feeds/question/185381 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/185381/how-do-i-programmatically-use-the-using-keyword-in-c 6 How do I programmatically use the "using" keyword in C#? MrDatabase 2008-10-08T23:43:51Z 2008-10-09T22:17:41Z <p>I have some System.Diagnotics.Processes to run. I'd like to call the close method on them automatically. Apparently the "using" keyword does this for me.</p> <p>Is this the way to use the using keyword?</p> <pre><code>foreach(string command in S) // command is something like "c:\a.exe" { try { using(p = Process.Start(command)) { // I literally put nothing in here. } } catch (Exception e) { // notify of process failure } } </code></pre> <p>I'd like to start multiple processes to run concurrently.</p> http://stackoverflow.com/questions/185381/how-do-i-programmatically-use-the-using-keyword-in-c/185419#185419 0 Answer by JB King for How do I programmatically use the "using" keyword in C#? JB King 2008-10-08T23:58:49Z 2008-10-08T23:58:49Z <pre><code>try { foreach(string command in S) // command is something like "c:\a.exe" { using(p = Process.Start(command)) { // I literally put nothing in here. } } } catch (Exception e) { // notify of process failure } </code></pre> <p>The reason it works is because when the exception happens, the variable p falls out of scope and thus it's Dispose method is called that closes the process is how that would go. Additionally, I would think you'd want to spin a thread off for each command rather than wait for an executable to finish before going on to the next one.</p> http://stackoverflow.com/questions/185381/how-do-i-programmatically-use-the-using-keyword-in-c/185449#185449 15 Answer by Orion Edwards for How do I programmatically use the "using" keyword in C#? Orion Edwards 2008-10-09T00:12:28Z 2008-10-09T00:19:49Z <pre><code>using(p = Process.Start(command)) </code></pre> <p>This will compile, as the <code>Process</code> class implements <code>IDisposable</code>, however you actually want to call the <code>Close</code> method.<br /> Logic would have it that the <code>Dispose</code> method would call <code>Close</code> for you, and by digging into the CLR using reflector, we can see that it does in fact do this for us. So far so good.</p> <p>Again using reflector, I looked at what the <code>Close</code> method does - it releases the underlying native win32 process handle, and clears some member variables. This (releasing external resources) is <em>exactly</em> what the IDisposable pattern is supposed to do.</p> <p><strong>However</strong> I'm not sure if this is what you want to achieve here.</p> <p>Releasing the underlying handles simply says to windows 'I am no longer interested in tracking this other process'. At no point does it actually cause the other process to quit, or cause your process to wait.</p> <p>If you want to force them quit, you'll need to use the <code>p.Kill()</code> method on the processes - however be advised it is never a good idea to kill processes as they can't clean up after themselves, and may leave behind corrupt files, and so on.</p> <p>If you want to wait for them to quit on their own, you could use <code>p.WaitForExit()</code> - however this will only work if you're waiting for one process at a time. If you want to wait for them all concurrently, it gets tricky.</p> <p>Normally you'd use <code>WaitHandle.WaitAll</code> for this, but as there's no way to get a <code>WaitHandle</code> object out of a <code>System.Diagnostics.Process</code>, you can't do this (seriously, wtf were microsoft thinking?).</p> <p>You could spin up a thread for each process, and call `WaitForExit in those threads, but this is also the wrong way to do it.</p> <p>You instead have to use p/invoke to access the native win32 <code>WaitForMultipleObjects</code> function.</p> <p>Here's a sample (which I've tested, and actually works)</p> <pre><code>[System.Runtime.InteropServices.DllImport( "kernel32.dll" )] static extern uint WaitForMultipleObjects( uint nCount, IntPtr[] lpHandles, bool bWaitAll, uint dwMilliseconds ); static void Main( string[] args ) { var procs = new Process[] { Process.Start( @"C:\Program Files\ruby\bin\ruby.exe", "-e 'sleep 2'" ), Process.Start( @"C:\Program Files\ruby\bin\ruby.exe", "-e 'sleep 3'" ), Process.Start( @"C:\Program Files\ruby\bin\ruby.exe", "-e 'sleep 4'" ) }; // all started asynchronously in the background var handles = procs.Select( p =&gt; p.Handle ).ToArray(); WaitForMultipleObjects( (uint)handles.Length, handles, true, uint.MaxValue ); // uint.maxvalue waits forever } </code></pre> http://stackoverflow.com/questions/185381/how-do-i-programmatically-use-the-using-keyword-in-c/185636#185636 2 Answer by Robert Paulson for How do I programmatically use the "using" keyword in C#? Robert Paulson 2008-10-09T01:50:13Z 2008-10-09T22:17:41Z <p>For reference: The <em>using</em> keyword for <em>IDisposable</em> objects:</p> <pre><code>using(Writer writer = new Writer()) { writer.Write("Hello"); } </code></pre> <p>is just compiler syntax. What it compiles down to is:</p> <pre><code>Writer writer = null; try { writer = new Writer(); writer.Write("Hello"); } finally { if( writer != null) { ((IDisposable)writer).Dispose(); } } </code></pre> <p><code>using</code> is a bit better since the compiler prevents you from reassigning the writer reference inside the using block.</p> <p>The framework guidelines Section 9.3.1 p. 256 state:</p> <blockquote> <p><strong>CONSIDER</strong> providing method Close(), in addition to the Dispose(), if close is standard terminology in the area.</p> </blockquote> <p><hr /></p> <p>In your code example, the outer try-catch is unnecessary (see above). </p> <p>Using probably isn't doing what you want to here since Dispose() gets called as soon as <code>p</code> goes out of scope. This doesn't shut down the process (tested). </p> <p>Processes are independent, so unless you call <code>p.WaitForExit()</code> they spin off and do their own thing completely independent of your program. </p> <p>Counter-intuitively, for a Process, Close() only releases resources but leaves the program running. CloseMainWindow() can work for some processes, and Kill() will work to kill any process. Both CloseMainWindow() and Kill() can throw exceptions, so be careful if you're using them in a finally block.</p> <p>To finish, here's some code that waits for processes to finish but doesn't kill off the processes when an exception occurs. I'm not saying it's better than Orion Edwards, just different.</p> <pre><code>List&lt;System.Diagnostics.Process&gt; processList = new List&lt;System.Diagnostics.Process&gt;(); try { foreach (string command in Commands) { processList.Add(System.Diagnostics.Process.Start(command)); } // loop until all spawned processes Exit normally. while (processList.Any()) { System.Threading.Thread.Sleep(1000); // wait and see. List&lt;System.Diagnostics.Process&gt; finished = (from o in processList where o.HasExited select o).ToList(); processList = processList.Except(finished).ToList(); foreach (var p in finished) { // could inspect exit code and exit time. // note many properties are unavailable after process exits p.Close(); } } } catch (Exception ex) { // log the exception throw; } finally { foreach (var p in processList) { if (p != null) { //if (!p.HasExited) // processes will still be running // but CloseMainWindow() or Kill() can throw exceptions p.Dispose(); } } } </code></pre> <p>I didn't bother Kill()'ing off the processes because the code starts get even uglier. Read the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx" rel="nofollow">msdn</a> documentation for more information.</p>