4 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) :