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