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