7 references to Parse
System.Diagnostics.Process (1)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
174
return long.
Parse
(span, NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture);
System.Net.NetworkInformation (1)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
174
return long.
Parse
(span, NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture);
System.Private.CoreLib (4)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
174
return long.
Parse
(span, NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (2)
151
return
Parse
(s.AsSpan(), style, provider);
1407
public static long Parse(ReadOnlySpan<char> s, IFormatProvider? provider) =>
Parse
(s, NumberStyles.Integer, provider);
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
245
public static nint Parse(ReadOnlySpan<char> s, NumberStyles style = NumberStyles.Integer, IFormatProvider? provider = null) => (nint)nint_t.
Parse
(s, style, provider);
System.Private.Xml (1)
System\Xml\Serialization\XmlSerializationWriter.cs (1)
634
long index = long.
Parse
(name.AsSpan(prefixLength), NumberStyles.Integer, CultureInfo.InvariantCulture);