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

◆ Decimal() [4/13]

System.Decimal.Decimal ( long value)
inline

Definition at line 2138 of file Decimal.cs.

2139 {
2140 if (value >= 0)
2141 {
2142 _flags = 0;
2143 }
2144 else
2145 {
2146 _flags = int.MinValue;
2147 value = -value;
2148 }
2149 _lo64 = (ulong)value;
2150 _hi32 = 0u;
2151 }
readonly uint _hi32
Definition Decimal.cs:2073
readonly int _flags
Definition Decimal.cs:2071
readonly ulong _lo64
Definition Decimal.cs:2075

References System.Decimal._flags, System.Decimal._hi32, System.Decimal._lo64, System.Runtime.Serialization.Dictionary, and System.value.