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

I've tried these two blocks but it returns the same value. I do not describe more, I simply just show the code:

    Dim f As Nullable(Of Integer)
    If f = 1 Then
        Console.WriteLine("Equal")
    Else
        Console.WriteLine("Not Equal")
    End If

It prompts me "Not Equal"

I just add a NOT and I excpect to get the NOT answer, but I got the same as above!!!

    Dim f As Nullable(Of Integer)
    If Not f = 1 Then
        Console.WriteLine("Equal")
    Else
        Console.WriteLine("Not Equal")
    End If

It works in C# correctly...

share|improve this question
A minor point: Not f = 1 is (Not f) = 1 not Not (f = 1), but they're both still Nothing. – Mark Hurd Feb 2 at 16:36
I found the VB.Net so dirty. why people still using it ? how about C#,python,Lua,ruby? – pylover Feb 2 at 20:40
Some people are "still using it" because they never drank the C# cool-aid, but did drink the VB/VB.NET cool-aid! I've built a career on VB/VB.NET. I've learned enough C# to convert it back to VB.NET, but will prefer to not use it where possible. – Mark Hurd Feb 3 at 2:16
ok, so i must to ask again: why some people never drank the c# cool-aid? – pylover Feb 3 at 21:37
This is now getting to be ideal for chat (but I'm working at the moment and don't have time). In my case I just didn't need to: VB.NET was a significant change but within my abilities. I understand others preferred to change languages when changing frameworks, but I didn't need to. – Mark Hurd Feb 4 at 1:41
show 1 more comment

1 Answer

up vote 6 down vote accepted

TL;DR: It works correctly according to the behaviour which is specified for VB, which isn't the same behaviour specified for C#.

The comparison "f = 1" yields a Nullable(Of Boolean) in VB. The result of comparing any value with Nothing is Nothing, and neither Nothing nor "Not Nothing" is "True", so you'll always end up in the Else clause.

See the MSDN page for nullable value types in VB for more details. In particular, if you look for "Comparing Nullable Types" you'll find an example (with explanation) which is very similar to your situation. In particular:

When the value of a Boolean variable or expression is Nothing, it is neither true nor false.

share|improve this answer
It seems a boolean expression may be evaluates as (True or False Or Nothing). Three states for a boolean expression? but the VB's IF keyword just has Two states: Then Or Else ? – pylover May 12 '12 at 14:42
1  
@pylover: It's actually that there are three states for a Nullable(Of Boolean) - MSDN isn't clear on that point, unfortunately. But yes, the "If" body will only be executed if the value is True, and the "Else" body will be executed if the value is False or Nothing. – Jon Skeet May 12 '12 at 14:45
i will test this situation in IronPython and F# – pylover May 12 '12 at 14:59

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.