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

◆ ToUInt32() [14/19]

static uint System.Convert.ToUInt32 ( string? value)
inlinestatic

Definition at line 1598 of file Convert.cs.

1599 {
1600 if (value == null)
1601 {
1602 return 0u;
1603 }
1604 return uint.Parse(value);
1605 }

References System.value.