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

◆ ToSByte() [15/19]

static sbyte System.Convert.ToSByte ( string? value)
inlinestatic

Definition at line 879 of file Convert.cs.

880 {
881 if (value == null)
882 {
883 return 0;
884 }
885 return sbyte.Parse(value);
886 }

References System.value.