Curious C# using statement expansion - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T16:14:27Zhttp://stackoverflow.com/feeds/question/946999http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/946999/curious-c-using-statement-expansion14Curious C# using statement expansionMatthew2009-06-03T20:23:00Z2009-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#94700815Answer by n8wrl for Curious C# using statement expansionn8wrl2009-06-03T20:25:13Z2009-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#9470468Answer by dss539 for Curious C# using statement expansiondss5392009-06-03T20:31:15Z2009-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#9472452Answer by Dolphin for Curious C# using statement expansionDolphin2009-06-03T21:04:33Z2009-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>