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

◆ TryParse() [6/13]

static bool System.SByte.TryParse ( [NotNullWhen(true)] string? s,
out sbyte result )
inlinestatic

Definition at line 163 of file SByte.cs.

164 {
165 if (s == null)
166 {
167 result = 0;
168 return false;
169 }
170 return TryParse((ReadOnlySpan<char>)s, NumberStyles.Integer, NumberFormatInfo.CurrentInfo, out result);
171 }
static bool TryParse([NotNullWhen(true)] string? s, out sbyte result)
Definition SByte.cs:163

References System.Globalization.NumberFormatInfo.CurrentInfo, System.s, and System.SByte.TryParse().

Referenced by System.SByte.TryParse(), System.SByte.TryParse(), System.SByte.TryParse(), System.SByte.TryParse(), System.SByte.TryParse(), System.SByte.TryParse(), System.SByte.TryParse(), and System.SByte.TryParse().