我想将DOB
变量分配为空。
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
使用可为空的日期时间
Dim DOB As Nullable(Of Date) = Date.Now
Dim datestring As String = DOB.Value.ToString("d")
DOB = Nothing
“DateTime 是一种值类型(一种结构),不能像所有 .Net 值类型一样设置为 null 或无。日期时间值的默认值是日期部分为零,时间部分为上午 12:00:00。”</p>
将 DOB 从日期变量更改为对象变量。然后,您可以不向变量传递任何内容或有效日期。然后可以使用该变量更新数据库。
dim DOB as object = nothing
If chkSdob.Checked = True Then
DOB = datestring
end if