5 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) :
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
224return nuint_t.TryParse(s, out Unsafe.As<nuint, nuint_t>(ref result));