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

◆ IsNull()

static bool System.Data.Common.ADP.IsNull ( object value)
inlinestaticpackage

Definition at line 957 of file ADP.cs.

958 {
959 if (value == null || DBNull.Value == value)
960 {
961 return true;
962 }
964 {
965 return nullable.IsNull;
966 }
967 return false;
968 }

References System.DBNull.Value, and System.value.

Referenced by System.Data.Common.DbCommandBuilder.CreateParameterForNullTest(), and System.Data.Common.DbDataAdapter.ParameterInput().