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

◆ Parse() [9/13]

static byte System.Byte.Parse ( string s,
IFormatProvider? provider )
inlinestatic

Definition at line 94 of file Byte.cs.

95 {
96 if (s == null)
97 {
98 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
99 }
100 return Parse((ReadOnlySpan<char>)s, NumberStyles.Integer, NumberFormatInfo.GetInstance(provider));
101 }
static NumberFormatInfo GetInstance(IFormatProvider? formatProvider)
static byte Parse(string s)
Definition Byte.cs:75

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