在 VB.NET 中,有没有一种方法可以将 DateTime
变量设置为“不设置”?为什么可以将 DateTime
设置为 Nothing
,而 没有可以检查它是否是 Nothing
?例如:
Dim d As DateTime = Nothing
Dim boolNotSet As Boolean = d Is Nothing
第二个语句抛出了这个错误:
'Is' operator does not accept operands of type 'Date'. Operands must be reference or
nullable types.