9 references to TryParse
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\XmlConvert.cs (1)
1121
if (!UInt64.
TryParse
(s, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo, out result))
illink (1)
Linker.Steps\ProcessLinkerXmlBase.cs (1)
562
if (!ulong.
TryParse
(value, NumberStyles.Integer, CultureInfo.InvariantCulture, out ulong ulresult))
Microsoft.CodeAnalysis.CSharp (1)
Parser\Lexer.cs (1)
1221
else if (!UInt64.
TryParse
(text, isHex ? NumberStyles.AllowHexSpecifier : NumberStyles.None, CultureInfo.InvariantCulture, out result))
Microsoft.CodeAnalysis.VisualBasic (1)
CommandLine\VisualBasicCommandLineParser.vb (1)
2217
If Not ULong.
TryParse
(parseValue,
Microsoft.Maui.Controls.Xaml (1)
CreateValuesVisitor.cs (1)
363
if (nodeType == typeof(UInt64) && ulong.
TryParse
(valuestring, NumberStyles.Number, CultureInfo.InvariantCulture, out var uint64val))
System.Net.Http (1)
System\Net\Http\Headers\ContentDispositionHeaderValue.cs (1)
89
if (ulong.
TryParse
(sizeString, NumberStyles.Integer, CultureInfo.InvariantCulture, out value))
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (2)
157
public static bool TryParse([NotNullWhen(true)] string? s, out ulong result) =>
TryParse
(s, NumberStyles.Integer, provider: null, out result);
1168
public static bool TryParse([NotNullWhen(true)] string? s, IFormatProvider? provider, out ulong result) =>
TryParse
(s, NumberStyles.Integer, provider, out result);
System.Private.Xml (1)
System\Xml\XmlConvert.cs (1)
946
if (!ulong.
TryParse
(s, NumberStyles.AllowLeadingWhite | NumberStyles.AllowTrailingWhite, NumberFormatInfo.InvariantInfo, out result))