vote up 4 vote down star
1

Is it possible to have a switch in C# which checks if the value is null or empty not "" but String.Empty? I know i can do this:

                switch (text)
                {
                    case null:
                    case "":
                        break;
                }

Is there something better, because I don't want to have a large list of IF statements.

im trying to replace:

if (String.IsNullOrEmpty(text))
    blah;
else if (text = "hi")
    blah
flag

72% accept rate
I didn't know there was a difference between String.Empty and "". What's the difference? – recursive Jan 11 at 2:14
There are none. It's the same at the content level. The reference is different. String.Empty returns always the same instance while "" return a different instance. – Maxim Jan 11 at 2:26
2  
I'm preety sure two "" will actually be the same object since .net interns the strings, but not positive. object.ReferenceEquals indicates they are the same. – Josh Jan 11 at 5:05
My test agrees with Josh's - the literal empty string, "", refers to the same object as String.Empty. I'm not sure this is guaranteed by any standard (though interning of literals is guaranteed - not sure if that guarantee applies to String.Empty), but it's certainly what happens now. – Michael Burr Jan 11 at 15:44
Now the question is... what if it's in separate assembly or in separate methods/class/etc. Personally. I use String.Empty because it's more readable than "". – Maxim Jan 12 at 17:13

7 Answers

vote up 10 vote down check

I would suggest something like the following:

switch(text ?? String.Empty)
{
    case "":
        break;
    case "hi":
        break;
}

Is that what you are looking for?

link|flag
vote up 5 vote down

What's wrong with your example switch statement?

switch (text)
{
    case null:
    case "":
        foo();
        break;
    case "hi":
        bar();
        break;
}

It works (and for some reason that surprised me - I thought it would complain or crash on the null case) and it's clear.

For that matter, why are you worried about String.Empty? I'm missing something here.

link|flag
I didn't even bother to try this so case null works hmmm... – Josh Jan 11 at 4:58
vote up 4 vote down

how about

if (string.isNullOrEmpty(text))
{
   //blah
}
else
{
 switch (text)
 {
     case "hi":
 }

}

link|flag
The question was to avoid if-else statements. – James Pogran Apr 9 at 14:49
If you look at the edit history the original question didn't include anything about if else;-) – Josh Apr 9 at 18:29
Also this avoids the style of if clauses he was worried about by only have a single if else as opposed to if elseif elseif etc.. – Josh Apr 9 at 18:30
vote up 3 vote down

From the documentation of String.Empty:

The value of this field is the zero-length string, "".

I interpret this to mean that there is no difference between "" and String.Empty. Why are you trying to distinguish between them?

link|flag
I was not sure that there was a difference between "" and String.Empty with respect the the culture (unicode ascii etc.). – maxfridbe Jan 11 at 2:31
vote up 2 vote down

An empty string is "", which is equal to String.Empty. The reason that you can put "" in a case statement but not "String.Empty" is that "Empty" is a field of the class "String" and "" is actually a contant value.

Constant values are allowed in cases, String.Empty is a field and could be altered at run time. (In this case it will remain the same, but not all static fields of each class are constant values.)

In the case of 'if', that condition is evaluated at run time and if does not require a constant value.

I hope this explains why.

link|flag
vote up 1 vote down

Something that I just noticed is that you can combine if/else and switch statements! Very useful when needing to check preconditions.

if (string.IsNullOrEmpty(text))
{
    //blah
}
else switch (text)
{
    case "hi":
    	Console.WriteLine("How about a nice game of chess?");
    	break;
    default:
    	break;
}
link|flag
Someone pointed out on a related post on SO that this is not really combining the statements, but the else-clause is just without the curly braces, so the switch is the only statement executed. This is syntactically the same as Josh's answer. I do think it looks nice though. – Even Mien Oct 5 at 13:30
vote up 0 vote down

For strings, I think you could do:

if (object.Equals(text,"text"))
{
}

MSDN docs.

link|flag

Your Answer

Get an OpenID
or

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