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