我已经尝试过这两个块,但它返回相同的值。我不再赘述,我只是展示代码:
Dim f As Nullable(Of Integer)
If f = 1 Then
Console.WriteLine("Equal")
Else
Console.WriteLine("Not Equal")
End If
它提示我“不相等”
我只是添加了一个NOT,我希望得到NOT答案,但我得到的和上面一样!!!
Dim f As Nullable(Of Integer)
If Not f = 1 Then
Console.WriteLine("Equal")
Else
Console.WriteLine("Not Equal")
End If
它在 C# 中正确工作...