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

◆ ToByte() [14/19]

static byte System.Convert.ToByte ( string? value)
inlinestatic

Definition at line 1015 of file Convert.cs.

1016 {
1017 if (value == null)
1018 {
1019 return 0;
1020 }
1021 return byte.Parse(value);
1022 }

References System.value.