You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for example, this:
If value Is DBNull.Value Then
Return Nothing
Else
Return CDate(value)
End If
not equals to:
Return If(value Is DBNull.Value, Nothing, CDate(value))
first will return Nothing, but second will return DateTime.MinValue.
for example, this:
If value Is DBNull.Value Then
Return Nothing
Else
Return CDate(value)
End If
not equals to:
Return If(value Is DBNull.Value, Nothing, CDate(value))
first will return Nothing, but second will return DateTime.MinValue.