Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

"using" blocks are often written like this:

using (new Foo()) { ... }

rather than like this:

using (var f = new Foo()) { ... }

In the first case, where no explicit reference to the new Foo object is set, is there any danger that the object could be disposed prior to the end of the block? If not, why not?

share|improve this question
Often ? _______ – Henk Holterman Jan 3 '11 at 21:13
Thanks for the quick responses! – Jan Hettich Jan 3 '11 at 23:47

2 Answers

up vote 3 down vote accepted

No you don't need to set an explicit reference, unless you need to access the object with the scope block. There is no danger of the unreferenced variable being disposed early because it is only disposed of when it goes out of scope.

share|improve this answer

There is no danger that it will be disposed early.

The first example still creates an explicit reference to the object that is created. That reference is just unnamed and can't be used in your code.

The using block will hold the reference (albeit unnamed) until the end of the block.

share|improve this answer
Edited just a missed "is" – Petar Minchev Jan 3 '11 at 20:23
@Petar - Doh! Thanks for the edit. – Justin Niessner Jan 3 '11 at 20:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.