12 references to TryParse
Microsoft.CodeAnalysis.Analyzers (1)
MetaAnalyzers\DiagnosticDescriptorCreationAnalyzer_ReleaseTracking.cs (1)
370long.TryParse(ruleId[2..], out _))
Microsoft.Data.Analysis.Tests (1)
DataFrame.IOTests.cs (1)
1686if (!long.TryParse(item, out long result))
Microsoft.DotNet.SignCheckLibrary (1)
Utils.cs (1)
99if (long.TryParse(timestamp, out long unixTime) && unixTime > 0)
Microsoft.ML.Core (1)
Utilities\ResourceManagerUtils.cs (1)
277if (!hasHeader || !long.TryParse(headers.First(), out var size))
Microsoft.ML.ResultProcessor (2)
ResultProcessor.cs (2)
648bool physicalParsed = long.TryParse(physicalMemory, out physical); 650bool virtualParsed = long.TryParse(virtualMemory, out virtualMem);
Microsoft.ML.Sweeper (2)
Parameters.cs (2)
620if (!long.TryParse(minStr, out min) || !long.TryParse(maxStr, out max))
Microsoft.VisualStudio.LanguageServices (1)
Options\LocalUserRegistryOptionPersister.cs (1)
66var suceeded = long.TryParse(stringValue, out var longValue);
SocialWeather (1)
Pipe\PipeWeatherStreamFormatter.cs (1)
36if (tokens.Length < 3 || !long.TryParse(tokens[2], out reportTime))
System.IO.Pipes (1)
System\IO\Pipes\AnonymousPipeClientStream.cs (1)
30bool parseable = long.TryParse(pipeHandleAsString, out long result);
System.Net.Requests (1)
System\Net\HttpWebRequest.cs (1)
329long.TryParse(_webHeaderCollection[HttpKnownHeaderNames.ContentLength], out value);