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

I was browsing a coworkers c# code today and found the following:

    using (MemoryStream data1 = new MemoryStream())
    using (MemoryStream data2 = new MemoryStream())
    {
        // Lots of code..........
     }

I had always seen the using statement followed by a pair of curly braces that defined the scope of the object life. My coworker who wrote the code said that the curly braces for the data1 using statement weren't needed and the code did the same thing as if they were present and nested the data2 using statement. So, what happens when the curly braces are ommitted?

share|improve this question
Just my 2 cents - While you "can" do this, as demonstrated by the answers, I'm of the opinion that you shouldn't do it, for readability purposes. To me, it's just like wrapping the if/else/while/lock/etc. blocks in braces - even if they're not necessary, it's much easier to read. – Joe Enos Aug 17 '10 at 21:54
5  
In my opinion, stacked using statements, as above, are far more readable than nested using statements. Particularly in cases where you're chaining together 3-4 Streams/StreamReaders to perform a single set of operations. – Joel Mueller Aug 17 '10 at 22:36
1  
@Joel: Maybe like anything else, the specific situation should be taken into consideration. If it was just two, my opinion is to absolutely nest them with braces. If we're talking 4 like you say, maybe stacked is the better approach. But the first time you need to access data1 prior to data2's creation, it means changing the readability of the code instead of just adding a line of code. – Joe Enos Aug 17 '10 at 23:16
@Joe: Fair enough. In my experience, my usage of things involving using blocks tends to be rather cut and dried. I don't think I've ever had an occasion to insert some logic in between two stacked using statements, and I rarely have to modify them in any way once they're written. – Joel Mueller Aug 18 '10 at 17:56

6 Answers

up vote 60 down vote accepted

Yes, you can also put them in one using statement:

using (MemoryStream data1 = new MemoryStream(), 
                    data2 = new MemoryStream())
{
    // do stuff
}
share|improve this answer
15  
+1. I did not know you could do this – fletcher Aug 17 '10 at 20:31
+1 Nice one, I'd seen this before... but forgot about it. – Chuck Conway Aug 17 '10 at 20:39
I'm pretty sure that the behaviour of this construct is different in certain cases. I don't remember exactly why right now, but I believe I read it in one of Bill Wagners books. – fearofawhackplanet Aug 17 '10 at 22:30
11  
Note that you can only put multiple objects in a single using statement if they are all of the same type, MemoryStream in this case. – LukeH Aug 17 '10 at 23:39
1  
From the C# spec: "A using statement of the form using (ResourceType r1 = e1, r2 = e2, ..., rN = eN) statement is precisely equivalent to a sequence of nested using statements: using (ResourceType r1 = e1) using (ResourceType r2 = e2) ... using (ResourceType rN = eN) statement" – LukeH Aug 17 '10 at 23:42
show 4 more comments

The same rules apply when you omit the curly braces in a for or an if statement.

Incidentally if you reflect into the compiled code, the compiler decompiler adds the braces.

share|improve this answer
2  
One difference is that, when nesting for statements, we would indent the inner one, but nested using statements are usually left-aligned. This is a matter of common convention, not language syntax, of course. – Steven Sudit Aug 17 '10 at 20:27
6  
+1, nitpick point: The compiler does not actually add braces, the decompiler puts them in. – JaredPar Aug 17 '10 at 20:30
@JaredPar Thanks for the clarification. I did not know that. – Chuck Conway Aug 17 '10 at 20:32
1  
Was about to post it, but JaredPar beat me to it. +1 on him and the answer. – Merlyn Morgan-Graham Aug 17 '10 at 20:33

Exactly what he said. The code above is exactly the same as writing:

using (MemoryStream data1 = new MemoryStream()) 
{
    using (MemoryStream data2 = new MemoryStream())
    {
        // Lots of code
    }
}

You can omit the curly braces after an if/else/for/while/using/etc statement as long as there is only one command within the statement. Examples:

// Equivalent!
if (x==6) 
    str = "x is 6";

if(x == 6) {
    str = "x is 6";
}

// Equivalent!
for (int x = 0; x < 10; ++x) z.doStuff();

for (int x = 0; x < 10; ++x) {
    z.doStuff();
}

// NOT Equivalent! (The first one ONLY wraps the p = "bob";!)
if (x == 5) 
p = "bob";
z.doStuff();

if (x == 5) {
   p = "bob";
   z.doStuff();
}
share|improve this answer
1  
Really good idea to post examples like these @Stephen ! – Cyberherbalist Aug 17 '10 at 22:26

Exactly what your colleague said, that is the equivalent of nesting the statements. The dispose for data2 would be called immediately before the dispose function for data1.

share|improve this answer

This is viable but risky, because if somebody later decides they want to do something to data1 before other stuff happens to it, they might place it right after the data1's using, which would take it out of the entire scope of data2's using. This would likely break compilation but still is a risky and pointless syntax shortcut..

share|improve this answer
4  
That person should probably consider a different line of work. – spoulson Aug 17 '10 at 22:16
@spoulson: true of so many people who don't, but it's still our jobs to keep the code as maintainable by others as possible, lest others put bugs in our code.. – Jimmy Hoffa Aug 18 '10 at 12:03

If there is only one instruction which follow the statement, the bracets are not needed. It is just like with if statement.

if(true)
{
   Console.Writeline("hello")
}

means the same that

if(true)
   Console.Writeline("hello")
share|improve this answer

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.