11 references to Parse
Microsoft.DotNet.Build.Tasks.Installers (4)
src\ArReader.cs (4)
43ulong timestamp = ulong.Parse(Encoding.ASCII.GetString(timestampBytes).TrimEnd(' ')); 48ulong ownerID = ulong.Parse(Encoding.ASCII.GetString(ownerIDBytes).TrimEnd(' ')); 53ulong groupID = ulong.Parse(Encoding.ASCII.GetString(groupIDBytes).TrimEnd(' ')); 63ulong size = ulong.Parse(Encoding.ASCII.GetString(sizeBytes).TrimEnd(' '));
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
1857value = ulong.Parse(data);
System.Diagnostics.Process (1)
src\libraries\Common\src\System\IO\StringParser.cs (1)
280Debug.Assert(result == ulong.Parse(ExtractCurrent()), "Expected manually parsed result to match Parse result");
System.Net.NetworkInformation (1)
src\libraries\Common\src\System\IO\StringParser.cs (1)
280Debug.Assert(result == ulong.Parse(ExtractCurrent()), "Expected manually parsed result to match Parse result");
System.Private.CoreLib (3)
src\libraries\Common\src\System\IO\StringParser.cs (1)
280Debug.Assert(result == ulong.Parse(ExtractCurrent()), "Expected manually parsed result to match Parse result");
src\libraries\System.Private.CoreLib\src\System\Convert.cs (1)
1436return ulong.Parse(value);
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
214public static nuint Parse(string s) => (nuint)nuint_t.Parse(s);
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\Json\ReflectionJsonFormatReader.cs (1)
224TypeCode.UInt64 => ulong.Parse(keyString),