2 references to TryParse
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (2)
122
public static bool TryParse(ReadOnlySpan<byte> utf8Text, out byte result) =>
TryParse
(utf8Text, NumberStyles.Integer, provider: null, out result);
1185
public static bool TryParse(ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out byte result) =>
TryParse
(utf8Text, NumberStyles.Integer, provider, out result);