VB.net 中定义的数据类型如果没有手动设置默认值,系统会有默认值,使用时需要注意
Dim intTest As IntegerDim boolTest As Boolean
Dim dateTest As Date
Dim objTest As Object
默认intTest = 0 , boolTest 为false , dateTest 为 1/1/0001 12:00:00 AM, objTest 为nothing