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

◆ BigInteger() [2/12]

System.Numerics.BigInteger.BigInteger ( uint value)
inline

Definition at line 110 of file BigInteger.cs.

111 {
112 if (value <= int.MaxValue)
113 {
114 _sign = (int)value;
115 _bits = null;
116 }
117 else
118 {
119 _sign = 1;
120 _bits = new uint[1];
121 _bits[0] = value;
122 }
123 }
readonly uint[] _bits
Definition BigInteger.cs:20

References System.Numerics.BigInteger._bits, System.Numerics.BigInteger._sign, and System.value.