如何在VB.NET中将Date变量设置为null

时间:2012-12-06 08:34:07

标签: vb.net

我想将DOB变量指定为null。

Dim DOB As Date = DTPSdob.Value
Dim datestring As String = DOB.ToString("d")
If chkSdob.Checked = False Then
      DOB = 'I want to assign here DOB variable as null'
Else
      DOB = datestring
End If

3 个答案:

答案 0 :(得分:31)

使用可空日期时间

    Dim DOB As Nullable(Of Date) = Date.Now
    Dim datestring As String = DOB.Value.ToString("d")
    DOB = Nothing

答案 1 :(得分:2)

“DateTime是一种值类型(结构),不能像所有.Net值类型一样设置为null或无。日期时间值的默认值为日期部分的零和时间部分的12:00:00 AM。“

VB.NET - Nullable DateTime and Ternary Operator

答案 2 :(得分:-3)

将DOB从日期变量更改为对象变量。然后,您可以将任何内容或有效日期传递给变量。然后可以使用该变量更新数据库。

dim DOB as object = nothing
If chkSdob.Checked = True Then
  DOB = datestring
end if