18 references to Parse
ILCompiler.Compiler (1)
src\runtime\src\coreclr\tools\Common\JitInterface\WasmLowering.cs (1)
422return int.Parse(sig.AsSpan(start, pos - start));
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\Common\JitInterface\WasmLowering.cs (1)
422return int.Parse(sig.AsSpan(start, pos - start));
Microsoft.Build.Framework (1)
Utilities\ConversionUtilities.cs (1)
138return (double)Int32.Parse(
Microsoft.Maui.Graphics (1)
Color.cs (1)
1034 int.Parse(
PresentationCore (3)
MS\Internal\IO\Packaging\ByteRangeDownloader.cs (3)
792int firstByteOffset = Int32.Parse(contentRange.AsSpan(ByteRangeUnit.Length, 806int lastByteOffset = Int32.Parse(contentRangeSpan.Slice(0, index), NumberStyles.None, NumberFormatInfo.InvariantInfo); 817Int32.Parse(contentRangeSpan, NumberStyles.None, NumberFormatInfo.InvariantInfo);
PresentationFramework (1)
System\Windows\Documents\RtfToXamlReader.cs (1)
291i = System.Int32.Parse(s, System.Globalization.NumberStyles.AllowHexSpecifier, CultureInfo.InvariantCulture);
System.Diagnostics.Process (1)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
151return int.Parse(span, NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture);
System.Net.HttpListener (3)
System\Net\Managed\ChunkStream.cs (2)
277_chunkSize = int.Parse(RemoveChunkExtension(_saved.ToString()), NumberStyles.HexNumber, CultureInfo.InvariantCulture); 291_chunkSize = int.Parse(RemoveChunkExtension(_saved.ToString()), NumberStyles.HexNumber, CultureInfo.InvariantCulture);
System\Net\Managed\ListenerPrefix.cs (1)
118_port = (ushort)int.Parse(uri.AsSpan(colon + 1, root - colon - 1));
System.Net.NetworkInformation (1)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
151return int.Parse(span, NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture);
System.Private.CoreLib (3)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
151return int.Parse(span, NumberStyles.AllowLeadingSign, CultureInfo.InvariantCulture);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (2)
154return Parse(s.AsSpan(), style, provider); 1404public static int Parse(ReadOnlySpan<char> s, IFormatProvider? provider) => Parse(s, NumberStyles.Integer, provider);
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\Json\XmlJsonReader.cs (1)
946return int.Parse(value, style, NumberFormatInfo.InvariantInfo);
System.Windows.Forms (1)
System\Windows\Forms\Printing\PageSetupDialog.cs (1)
297if (result > 0 && int.Parse(buffer, NumberStyles.Integer, CultureInfo.InvariantCulture) == 0)