2 references to TryParse
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Int128.cs (2)
147
public static bool TryParse([NotNullWhen(true)] string? s, out Int128 result) =>
TryParse
(s, NumberStyles.Integer, provider: null, out result);
1924
public static bool TryParse([NotNullWhen(true)] string? s, IFormatProvider? provider, out Int128 result) =>
TryParse
(s, NumberStyles.Integer, provider, out result);