vote up 9 vote down star
1

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".

switch (Type)
{
    case Type.A:
            string variable = "x";
                break;
    case Type.B:
            string variable = "y";
                break;
}

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?

flag

7 Answers

vote up 10 vote down check

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.

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.

link|flag
1  
Follow the braces. A variable only exists inside the innermost braces in which the variable is first declared. – Jarrett Meyer Oct 21 '08 at 17:02
vote up 9 vote down

If you want a variable scoped to a particular case, simply enclose the case in it's own block:

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;

}
link|flag
vote up 4 vote down

Because their scope is at the switch block. Check here for more info.

link|flag
vote up 3 vote down

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.

link|flag
vote up 2 vote down

The initialization takes place in the case, but the declaration is effectively done at the top of the scope. (Psuedo-code)

switch (Type)
{
string variable;

    case Type.A:
            variable = "x";
                break;
    case Type.B:
            variable = "y";
                break;
}
link|flag
vote up 0 vote down

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.

link|flag
vote up -3 vote down

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.

link|flag
1  
In C#, they require you to be explicit. You have to either add a break statement, or you could "fall through" with an explicit goto statement that goes to the next label. – neilwhitaker1 Oct 21 '08 at 17:57

Your Answer

Get an OpenID
or

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