Curious C# using statement expansion - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T16:14:27Z http://stackoverflow.com/feeds/question/946999 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/946999/curious-c-using-statement-expansion 14 Curious C# using statement expansion Matthew 2009-06-03T20:23:00Z 2009-06-04T11:32:46Z <p>I've run ildasm to find that this:</p> <pre><code> using(Simple simp = new Simple()) { Console.WriteLine("here"); } </code></pre> <p>generates IL code that is equivalent to this:</p> <pre><code> Simple simp = new Simple(); try { Console.WriteLine("here"); } finally { if(simp != null) { simp.Dispose(); } } </code></pre> <p>and the question is why the hell does it check null in the finally? The finally block will only be executed if the try block is executed, and the try block will only be executed if the Simple constructor succeeds (I.e. does not throw an exception), in which case simp will be non-null. (If there is some fear that some intervening steps might come between the Simple constructor and the beginning of the try block, then that would really be a problem because then an exception might be thrown that would prevent the finally block from executing at all.) So, why the hell?</p> <p>Putting aside (please) the argument of whether the using statement is better than try-finally, I write my try-finally blocks as:</p> <pre><code> Simple simp = new Simple(); try { Console.WriteLine("here"); } finally { simp.Dispose(); simp = null; // sanity-check in case I touch simp again // because I don't rely on all classes // necessarily throwing // ObjectDisposedException } </code></pre> http://stackoverflow.com/questions/946999/curious-c-using-statement-expansion/947008#947008 15 Answer by n8wrl for Curious C# using statement expansion n8wrl 2009-06-03T20:25:13Z 2009-06-04T11:32:46Z <p>No, the finally block will ALWAYS be executed. You may not be getting the object from a new but from some other function that returns your object - and it might return NULL. using() is your friend!</p> <p>dss539 was kind enough to suggest I include his note:</p> <pre><code>using(Simple simp = null) </code></pre> <p>is yet another reason that the expansion must check for null first.</p> http://stackoverflow.com/questions/946999/curious-c-using-statement-expansion/947046#947046 8 Answer by dss539 for Curious C# using statement expansion dss539 2009-06-03T20:31:15Z 2009-06-03T20:31:15Z <p><code>using(Simple simp = null)</code> is yet <strong>another</strong> reason that the expansion must check for null first.</p> http://stackoverflow.com/questions/946999/curious-c-using-statement-expansion/947245#947245 2 Answer by Dolphin for Curious C# using statement expansion Dolphin 2009-06-03T21:04:33Z 2009-06-03T21:04:33Z <p><a href="http://msdn.microsoft.com/en-us/library/aa664736%28VS.71%29.aspx" rel="nofollow">MSDN</a> on the using statement.</p> <p>What I think is strange is that it doesn't expand to:</p> <pre><code>Simple simp = new Simple(); Simple __compilergeneratedtmpname = simp; try { Console.WriteLine("here"); } finally { if(__compilergeneratedtmpname != null) { __compilergeneratedtmpname.Dispose(); } } </code></pre>