my problem is that
dim var1 as date
var1=null
is this possible
Printable View
my problem is that
dim var1 as date
var1=null
is this possible
var1 = nothing
Hi,
Null has been discarded in VB.NET. Use
var1 = Nothing to clear the variable
or
var1 = CDate("") to clear the value of the variable.