5 references to TryParse
Shared (1)
ServerSentEvents\SseParser_1.cs (1)
441
if (long.
TryParse
(
System.Net.ServerSentEvents (1)
System\Net\ServerSentEvents\SseParser_1.cs (1)
423
if (long.
TryParse
(
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Int64.cs (2)
168
public static bool TryParse(ReadOnlySpan<byte> utf8Text, out long result) =>
TryParse
(utf8Text, NumberStyles.Integer, provider: null, out result);
1458
public static bool TryParse(ReadOnlySpan<byte> utf8Text, IFormatProvider? provider, out long result) =>
TryParse
(utf8Text, NumberStyles.Integer, provider, out result);
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
1419
return nint_t.
TryParse
(utf8Text, style, provider, out Unsafe.As<nint, nint_t>(ref result));