Variable declaration in c# switch statement - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T09:05:09Zhttp://stackoverflow.com/feeds/question/222601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/222601/variable-declaration-in-c-switch-statement9Variable declaration in c# switch statementJeremy2008-10-21T16:49:26Z2008-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#22261210Answer by Mitchel Sellers for Variable declaration in c# switch statementMitchel Sellers2008-10-21T16:52:11Z2008-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#2226143Answer by Jon Skeet for Variable declaration in c# switch statementJon Skeet2008-10-21T16:52:46Z2008-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#2226164Answer by itsmatt for Variable declaration in c# switch statementitsmatt2008-10-21T16:52:58Z2008-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#2226172Answer by James Curran for Variable declaration in c# switch statementJames Curran2008-10-21T16:53:01Z2008-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-3Answer by jsl4980 for Variable declaration in c# switch statementjsl49802008-10-21T16:53:04Z2008-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#2226280Answer by jezell for Variable declaration in c# switch statementjezell2008-10-21T16:55:49Z2008-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#22268310Answer by Michael Burr for Variable declaration in c# switch statementMichael Burr2008-10-21T17:11:49Z2008-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>