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

◆ Int64DivMod1E9()

static uint System.Number.Int64DivMod1E9 ( ref ulong value)
inlinestaticprivate

Definition at line 3503 of file Number.cs.

3504 {
3505 uint result = (uint)(value % 1000000000);
3506 value /= 1000000000uL;
3507 return result;
3508 }

References System.value.

Referenced by System.Number.Int64ToNumber(), System.Number.NegativeInt64ToDecStr(), System.Number.TryNegativeInt64ToDecStr(), System.Number.TryUInt64ToDecStr(), System.Number.UInt64ToDecStr(), and System.Number.UInt64ToNumber().