terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ UInt32ToNumber()

static unsafe void System.Number.UInt32ToNumber ( uint value,
Number::NumberBuffer number )
inlinestaticprivate

Definition at line 493 of file Number.cs.

494 {
495 int num = 10;
496 long num2 = 0L;
497 number.precision = num;
498 number.sign = num2 != 0L;
499 char* digits = number.digits;
500 if (value != 0U)
501 {
502 return;
503 }
504 number.scale = (int)value;
505 char* digits2 = number.digits;
506 }
class f__AnonymousType0<< Count > j__TPar

References j__TPar, System.L, System.U, and System.value.