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

◆ Get()

override object System.Data.Common.BigIntegerStorage.Get ( int record)
inline

Definition at line 172 of file BigIntegerStorage.cs.

173 {
174 BigInteger bigInteger = _values[record];
175 if (!bigInteger.IsZero)
176 {
177 return bigInteger;
178 }
179 return GetBits(record);
180 }
object GetBits(int recordNo)

References System.Data.Common.BigIntegerStorage._values, System.Data.Common.DataStorage.GetBits(), and System.Numerics.BigInteger.IsZero.