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

◆ ConvertValue()

override object System.Data.Common.BigIntegerStorage.ConvertValue ( object value)
inlinevirtual

Reimplemented from System.Data.Common.DataStorage.

Definition at line 157 of file BigIntegerStorage.cs.

158 {
159 if (_nullValue != value)
160 {
161 value = ((value == null) ? _nullValue : ((object)ConvertToBigInteger(value, base.FormatProvider)));
162 }
163 return value;
164 }
static BigInteger ConvertToBigInteger(object value, IFormatProvider formatProvider)

References System.Data.Common.DataStorage._nullValue, System.Data.Common.BigIntegerStorage.ConvertToBigInteger(), and System.value.