Variable declaration in c# switch statement - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:05:09Z http://stackoverflow.com/feeds/question/222601 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement 9 Variable declaration in c# switch statement Jeremy 2008-10-21T16:49:26Z 2008-10-21T17:11:49Z <p>Why is it that in a c# switch statement, for a variable used in multiple cases, you only declare it in the first case? For example, the following throws the error "A local variable named 'variable' is already defined in this scope".</p> <pre><code>switch (Type) { case Type.A: string variable = "x"; break; case Type.B: string variable = "y"; break; } </code></pre> <p>However, per the logic, the initial declaration should not be hit if the type is Type.B. Do all variables within a switch statement exist in a single scope, and are they created/allocated before any logic is processed?</p> http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement/222612#222612 10 Answer by Mitchel Sellers for Variable declaration in c# switch statement Mitchel Sellers 2008-10-21T16:52:11Z 2008-10-21T16:52:11Z <p>I believe it has to do with the overall scope of the variable, it is a block level scope that is defined at the switch level.</p> <p>Personally if you are setting a value to seomthing inside a switch in your example for it to really be of any benefit, you would want to declare it outside the switch anyway.</p> http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement/222614#222614 3 Answer by Jon Skeet for Variable declaration in c# switch statement Jon Skeet 2008-10-21T16:52:46Z 2008-10-21T16:52:46Z <p>Yes, the scope is the entire switch block - unfortunately, IMO. You can always add braces within a single case, however, to create a smaller scope. As for whether they're created/allocated - the stack frame has enough space for all the local variables in a method (leaving aside the complexities of captured variables). It's not like that space is allocated during the method's execution.</p> http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement/222616#222616 4 Answer by itsmatt for Variable declaration in c# switch statement itsmatt 2008-10-21T16:52:58Z 2008-10-21T16:52:58Z <p>Because their scope is at the switch block. Check <a href="http://msdn.microsoft.com/en-us/library/aa664749(VS.71).aspx" rel="nofollow">here</a> for more info.</p> http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement/222617#222617 2 Answer by James Curran for Variable declaration in c# switch statement James Curran 2008-10-21T16:53:01Z 2008-10-21T16:53:01Z <p>The initialization takes place in the case, but the declaration is effectively done at the top of the scope. (Psuedo-code)</p> <pre><code>switch (Type) { string variable; case Type.A: variable = "x"; break; case Type.B: variable = "y"; break; } </code></pre> http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement/222618#222618 -3 Answer by jsl4980 for Variable declaration in c# switch statement jsl4980 2008-10-21T16:53:04Z 2008-10-21T16:53:04Z <p>I'm not very familiar with C# but in C++ you do not have to use break in between every case statement. You can have case A flow right into case B which would cause the problems that you described above in your question. I do not create variables inside of the cases, if I need a variable in multiple cases I will declare it before the switch.</p> http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement/222628#222628 0 Answer by jezell for Variable declaration in c# switch statement jezell 2008-10-21T16:55:49Z 2008-10-21T16:55:49Z <p>The variables do share scope in the C# compiler, however scope doesn't exist in the same way in IL. As for actual creation / initialization... the .NET memory model lets the compiler move reads / writes a bit as long as simple rules are followed unless the variable is marked as volatile.</p> http://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement/222683#222683 10 Answer by Michael Burr for Variable declaration in c# switch statement Michael Burr 2008-10-21T17:11:49Z 2008-10-21T17:11:49Z <p>If you want a variable scoped to a particular case, simply enclose the case in it's own block:</p> <pre><code>switch (Type) { case Type.A: { string variable = "x"; /* do other stuff with variable */ } break; case Type.B: { string variable = "y"; /* do other stuff with variable */ } break; } </code></pre>