如何在VB.NET中将可为空的DateTime设置为null?

前端之家收集整理的这篇文章主要介绍了如何在VB.NET中将可为空的DateTime设置为null?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在我的用户界面上设置一个日期范围过滤器,其复选框用于说明是否应使用DateTimePicker的值,例如
Dim fromDate As DateTime? = If(fromDatePicker.Checked,fromDatePicker.Value,Nothing)

然而,将fromDate设置为Nothing不会导致它被设置为Nothing,而是设置为’12:00:00 AM’,并且以下If语句错误地执行过滤器,因为startDate不是Nothing.

If (Not startDate Is Nothing) Then
    list = list.Where(Function(i) i.InvDate.Value >= startDate.Value)
End If

我如何确保startDate获得Nothing值?

问题是它首先检查这个赋值的右侧,并确定它是DateTime(没有?)类型.然后执行分配.

这将有效:

Dim fromDate As DateTime? = If(fromDatePicker.Checked,_
                               fromDatePicker.Value,_
                               CType(Nothing,DateTime?))

因为它强制右侧的类型是DateTime?.

正如我在评论中所说,Nothing可能更类似于C#的默认值(T)而不是null:

Nothing represents the default value of a data type. The default value depends on whether the variable is of a value type or of a reference type.

猜你在找的VB相关文章