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

◆ ToUInt64()

unsafe ulong System.Number.BigInteger.ToUInt64 ( )
inline

Definition at line 681 of file Number.cs.

682 {
683 if (_length > 1)
684 {
685 return ((ulong)_blocks[1] << 32) + _blocks[0];
686 }
687 if (_length > 0)
688 {
689 return _blocks[0];
690 }
691 return 0uL;
692 }
unsafe fixed uint _blocks[115]
Definition Number.cs:51

References System.Number.BigInteger._blocks, and System.Number.BigInteger._length.