我有以下代码:
dsParticippantInfo.Tables(0).Rows(0)("Contract_Amt")
其中有 DBnull 的值。
现在我想比较一下:
if dsParticippantInfo.Tables(0).Rows(0)("Contract_Amt")=nothing
……
...
我明白了
Run-time exception thrown : System.InvalidCastException - Operator is not valid for type 'DBNull' and 'Nothing'.
想法如何比较这个值,看看它是否包含一个DBnull
?
if dsParticippantInfo.Tables(0).Rows(0)("Contract_Amt")=system.DBnull
也返回错误。