Why can't I check if a 'DateTime' is 'Nothing'?

前端 未结 8 2065
天命终不由人
天命终不由人 2020-12-07 17:18

In VB.NET, is there a way to set a DateTime variable to \"not set\"? And why is it possible to set a DateTime to Nothing, but not<

8条回答
  •  情书的邮戳
    2020-12-07 18:02

    You can also use below just simple to check:

    If startDate <> Nothing Then
    your logic
    End If
    

    It will check that the startDate variable of DateTime datatype is null or not.

提交回复
热议问题