vote up 4 vote down star
...
case 1:
   string x = "SomeString";
   ...
   break;
case 2:
   x = "SomeOtherString";
   ...
   break;
...


Is there something that I am not understanding about the switch statement in C#? Why would this not be an error when case 2 is used?
Edit: This code works and doesn't throw an error.

flag

you just need to put string x = "SomeOtherString"; then it will work. the, you can not use case 1 variable in case 2. out of scope error will occur. – Syed Tayyab Ali May 14 at 16:05
make sure case 2 require code modification. – Syed Tayyab Ali May 14 at 16:06
@Syed - that is not correct. NO error occurs with this code. – Jeremy Cron May 14 at 16:07
that is because you already defined string x, out side the switch statement, therefore you are not getting any error. that string x is acting global in case 2. Let me know. – Syed Tayyab Ali May 14 at 16:20
1  
Though that is the case for many textual regions -- for example, the statement portion of a for, foreach, using, switch, and so on -- it is explicitly not true of a switch section. The specification carefully defines "scope" and describes what regions introduce scope boundaries. See the spec if you want the details. – Eric Lippert May 14 at 17:20
show 4 more comments

7 Answers

vote up 12 vote down check

You have to be careful how you think about the switch statement here. There's no creation of variable scopes going on at all, in fact. Don't let the fact that just because the code within cases gets indented that it resides within a child scope.

When a switch block gets compiled, the case labels are simply converted into labels, and the appropiate goto instruction is executed at the start of the switch statement depending on the switching expression. Indeed, you can manually use goto statements to create "fall-through" situations (which C# does directly support), as the MSDN page suggests.

goto case 1;

If you specifically wanted to create scopes for each case within the switch block, you could do the following.

...
case 1:
{
   string x = "SomeString";
   ...
   break;
}
case 2:
{
   string x = "SomeOtherString";
   ...
   break;
}
...

This requires you to redeclare the variable x (else you will receive a compiler error). The method of scoping each (or at least some) can be quite useful in certain situations, and you will certainly see it in code from time to time.

link|flag
please correct case 2, then your code would be fine. – Syed Tayyab Ali May 14 at 16:10
@Syed: Yeah, I meant to point out that for the scoped switch block the compiler would generate an error. I've clarified that to show that you need to redefine x in this case. – Noldorin May 14 at 16:18
@Noldorin: Another thing I want to let you know, that his code was not getting any error in case 2. That is because he already defined string x before switch. That become global and case 2 always execute without any error. – Syed Tayyab Ali May 14 at 16:22
@Syed - you are incorrect - I DID NOT define x outside of the switch. – Jeremy Cron May 14 at 16:25
@JCron: If anything is bad, that came from my side. If anything good, that is because of Creator. Be cool and accept my humble apology. – Syed Tayyab Ali May 14 at 16:30
show 1 more comment
vote up 7 vote down

The documentation on MSDN says :

The scope of a local variable declared in a switch-block of a switch statement (Section 8.7.2) is the switch-block.

Also, a similar question has been asked before: Variable declaration in c# switch statement

link|flag
Thank you - I did not find the other question. – Jeremy Cron May 14 at 15:59
vote up 4 vote down

There is no compiler error because the switch statement does not create a new scope for variables.

If you declare a variable inside of a switch, the variable is in the same scope as the code block surrounding the switch. To change this behavior, you would need to add {}:

...
case 1:
    // Start a new variable scope 
    {
        string x = "SomeString";
        ...
    }
    break;
case 2:
    {
        x = "SomeOtherString";
        ...
    }
    break;
...

This will cause the compiler to complain. However, switch, on it's own, doesn't internally do this, so there is no error in your code.

link|flag
vote up 2 vote down

Is there something that I am not understanding about the switch statement in C#?

Seems likely!

Why would this not be an error when case 2 is used?

It's not an error presumably because its a legal C# program that follows the rules laid down in the C# specification.

Perhaps a more fruitful way to approach the question is for you to explain precisely why you believe this should be an error. Preferably by referring to the section of the specification which you believe has been violated.

link|flag
-1, this should've been a comment, not an answer to my question. – Jeremy Cron May 14 at 16:01
vote up 1 vote down

It looks like the scoping of variables is within the switch, not the case, probably because cases can be stacked. Notice if you try to reference x outside of the switch it will fail.

link|flag
vote up 0 vote down

if are creating any local variable within case, you can not use them out side case.

...
int opt ;
switch(opt)
{
case 1:
{
   string x = "SomeString";
   ...
}
   break;
case 2:
{
   string x = "SomeOtherString";
   ...
}
   break;
default:
{
//your code
}
break;
}
...
link|flag
if you case contain multiple statements, then put {your multiple statements in brackets} and outside put break; – Syed Tayyab Ali May 14 at 15:59
see case 2, you did not declare string X, but in my case 2, it is properly definded – Syed Tayyab Ali May 14 at 16:04
whoever give vote down, please specify reason, so I know what is wrong with my reply.. – Syed Tayyab Ali May 14 at 16:12
-1 for comments and insisting that the code is incorrect. – Jeremy Cron May 14 at 16:14
@JCron, if your code is correct, then why you are here on SO. My dear friend, we are here to helping you out. – Syed Tayyab Ali May 14 at 16:16
show 6 more comments
vote up -2 vote down

move the string declaration to before the

switch(value)

statement. Then assign x for each case.

link|flag
He's not asking HOW to get it to work... but why there is no compiler error. – James Atkinson May 14 at 15:54

Your Answer

Get an OpenID
or

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