Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IsDBNull()

override bool System.Data.Common.DataRecordInternal.IsDBNull ( int i)
inline

Implements System.Data.IDataRecord.

Definition at line 221 of file DataRecordInternal.cs.

222 {
223 object obj = _values[i];
224 if (obj != null)
225 {
226 return Convert.IsDBNull(obj);
227 }
228 return true;
229 }

References System.Data.Common.DataRecordInternal._values, System.Convert.IsDBNull(), and System.obj.