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...
Not f = 1is(Not f) = 1notNot (f = 1), but they're both stillNothing. – Mark Hurd Feb 2 at 16:36