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

◆ ToByte() [15/19]

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

Definition at line 1024 of file Convert.cs.

1025 {
1026 if (value == null)
1027 {
1028 return 0;
1029 }
1030 return byte.Parse(value, provider);
1031 }

References System.value.