4 references to TryParse
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
MSBuild\ProjectFile\Conversions.cs (1)
44if (ulong.TryParse(value, out var result))
Microsoft.ML.Data (2)
Utilities\TypeParsingUtils.cs (2)
125if (!ulong.TryParse(str.Substring(0, ich), out min)) 138if (!ulong.TryParse(str, out tmp))
System.Net.HttpListener (1)
System\Net\Managed\HttpListenerRequest.Managed.cs (1)
228ulong.TryParse(val, out ulong parsedUlongContentLength) ? (parsedUlongContentLength <= long.MaxValue ? (long)parsedUlongContentLength : 0) :