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

◆ Decimal() [2/13]

System.Decimal.Decimal ( int value)
inline

Definition at line 2115 of file Decimal.cs.

2116 {
2117 if (value >= 0)
2118 {
2119 _flags = 0;
2120 }
2121 else
2122 {
2123 _flags = int.MinValue;
2124 value = -value;
2125 }
2126 _lo64 = (uint)value;
2127 _hi32 = 0u;
2128 }
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.