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



我想将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

使用可为空的日期时间

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

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

VB.NET - 可为空的日期时间和三元运算符

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

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

相关内容

  • 没有找到相关文章

最新更新