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

◆ Parse() [13/13]

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

Definition at line 132 of file SByte.cs.

133 {
135 if (s == null)
136 {
137 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
138 }
139 return Parse((ReadOnlySpan<char>)s, style, NumberFormatInfo.GetInstance(provider));
140 }
static void ValidateParseStyleInteger(NumberStyles style)
static NumberFormatInfo GetInstance(IFormatProvider? formatProvider)
static sbyte Parse(string s)
Definition SByte.cs:104

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