5 references to TryParse
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\ProjectFile\Conversions.cs (1)
44
if (ulong.
TryParse
(value, out var result))
Microsoft.ML.Data (2)
Utilities\TypeParsingUtils.cs (2)
125
if (!ulong.
TryParse
(str.Substring(0, ich), out min))
138
if (!ulong.
TryParse
(str, out tmp))
System.Net.HttpListener (1)
System\Net\Managed\HttpListenerRequest.Managed.cs (1)
228
ulong.
TryParse
(val, out ulong parsedUlongContentLength) ? (parsedUlongContentLength <= long.MaxValue ? (long)parsedUlongContentLength : 0) :
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
224
return nuint_t.
TryParse
(s, out Unsafe.As<nuint, nuint_t>(ref result));