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

◆ Parse() [9/13]

static sbyte System.SByte.Parse ( string s,
IFormatProvider? provider )
inlinestatic

Definition at line 123 of file SByte.cs.

124 {
125 if (s == null)
126 {
127 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
128 }
129 return Parse((ReadOnlySpan<char>)s, NumberStyles.Integer, NumberFormatInfo.GetInstance(provider));
130 }
static NumberFormatInfo GetInstance(IFormatProvider? formatProvider)
static sbyte Parse(string s)
Definition SByte.cs:104

References System.Globalization.NumberFormatInfo.GetInstance(), System.SByte.Parse(), System.s, and System.ThrowHelper.ThrowArgumentNullException().