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

◆ ToByte() [11/19]

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

Definition at line 909 of file Convert.cs.

910 {
911 if (value != null)
912 {
913 return ((IConvertible)value).ToByte(provider);
914 }
915 return 0;
916 }

References System.value.