如何查看Null的日期好吗? 这是我试过的......
Dim playDate As Date =
order.SelectPlayDate(Guid.Parse(returnedItem.orderID))
If playDate Not IsNull Then
calendar1.SelectedDate = playDate
End If
答案 0 :(得分:0)
<强>更新:强>
该错误,因为您声明为playDate的值可以返回null。在声明播放日期之前,您应首先检查此“order.SelectPlayDate(Guid.Parse(returnedItem.orderID))”是否包含值
也许是这样(未经测试):
--1z2x3c4v5b--
或先声明。这取决于你。