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

◆ ToByte() [1/19]

static byte System.Convert.ToByte ( bool value)
inlinestatic

Definition at line 918 of file Convert.cs.

919 {
920 if (!value)
921 {
922 return 0;
923 }
924 return 1;
925 }

References System.value.