Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why does the first if statement evaluate to true? I know if I use "is" instead of "=" then it won't evaluate to true. If I replace String.Empty with "Foo" it doesn't evaluate to true. Both String.Empty and "Foo" have the same type of String, so why does one evaluate to true and the other doesn't?

    //this evaluates to true
    If Nothing = String.Empty Then

    End If

    //this evaluates to false
    If Nothing = "Foo" Then

    End If
share|improve this question
Are you using the .Equals() method to compare? – Amber Apr 13 '10 at 21:14
I added a code snippet. I don't actually need to do a comparison between null and an empty string, I am just curious as to why that statement evaluated to true. – Ek0nomik Apr 13 '10 at 21:25

3 Answers

up vote 17 down vote accepted

Nothing in VB.net is the default value for a type. The language spec says in section 2.4.7:

Nothing is a special literal; it does not have a type and is convertible to all types in the type system, including type parameters. When converted to a particular type, it is the equivalent of the default value of that type.

So, when you test against String.Empty, Nothing is converted to a string, which has a length 0. The Is operator should be used for testing against Nothing, and String.Empty.Equals(Nothing) will also return false.

share|improve this answer
Do you know the reason behind automatically converting Nothing to a string on the fly when I do the comparison? What is the benefit of this? – Ek0nomik Apr 13 '10 at 21:24
1  
When using the = operator with a string, VB.NET uses StrCmp, rather than op_Equality. I'd speculate this was for backwards compatibility reasons. – Rebecca Chernoff Apr 13 '10 at 21:51
1  
What she means to say: VB.NET Nothing = default(T) in C#, not NULL – Quandary Jan 18 at 5:54
But isn't the default value for String Nothing instead of ""? – recursive Mar 26 at 23:14

Try this:

Console.WriteLine("Is String.Empty equal to Nothing?: {0}", String.Empty.Equals(Nothing))

The = operator doesn't enforce equal types, whereas the .Equals() method of a string object does, as does the Is operator.

share|improve this answer

Related to this topic, if you use a string variable initialized with "nothing" to be assigned to the property "value" of a SqlParameter that parameter is ignored, not included in the command sent to the server, and a missing parameter error is thrown. If you initialize that variable with string.empty everything goes fine.

//This doesn't work
Dim myString as String = nothing
mySqlCommand.Parameters.Add("@MyParameter", SqlDbType.Char).Value = myString

//This works    
Dim myString as String = string.empty
mySqlCommand.Parameters.Add("@MyParameter", SqlDbType.Char).Value = myString
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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