7 implementations of Parse
System.Net.Primitives (3)
System\Net\IPAddress.cs (1)
313static IPAddress ISpanParsable<IPAddress>.Parse(ReadOnlySpan<char> s, IFormatProvider? provider) =>
System\Net\IPEndPoint.cs (1)
233static IPEndPoint ISpanParsable<IPEndPoint>.Parse(ReadOnlySpan<char> s, IFormatProvider? provider) => Parse(s);
System\Net\IPNetwork.cs (1)
366static IPNetwork ISpanParsable<IPNetwork>.Parse(ReadOnlySpan<char> s, IFormatProvider? provider) => Parse(s);
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Boolean.cs (1)
413static bool ISpanParsable<bool>.Parse(ReadOnlySpan<char> s, IFormatProvider? provider) => Parse(s);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
2041static char ISpanParsable<char>.Parse(ReadOnlySpan<char> s, IFormatProvider? provider) => Parse(s);
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.cs (1)
776static string ISpanParsable<string>.Parse(ReadOnlySpan<char> s, IFormatProvider? provider)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Rune.cs (1)
1027static Rune ISpanParsable<Rune>.Parse(ReadOnlySpan<char> s, IFormatProvider? provider)
30 references to Parse
System.Private.CoreLib (27)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
1146/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\DateOnly.cs (1)
902/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\DateTime.cs (1)
2055/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\DateTimeOffset.cs (1)
1040/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1815/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Double.cs (1)
1837/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Guid.cs (1)
1847/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2284/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
2053/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
1352/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
1403/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
1406/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\BFloat16.cs (1)
2006/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
134/// <inheritdoc cref="ISpanParsable{T}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
126/// <inheritdoc cref="ISpanParsable{T}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
135/// <inheritdoc cref="ISpanParsable{T}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\INumberBase.cs (1)
647TSelf result = TSelf.Parse(utf16Text, provider);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
1781/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
1331/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1751/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Rune.cs (1)
1026/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\TimeOnly.cs (2)
455/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" /> 1071/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
2135/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
1151/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
1222/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
1223/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
System.Runtime.Numerics (3)
System\Numerics\BigInteger.cs (1)
5542/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
System\Numerics\Complex.cs (1)
918/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />
System\Numerics\Complex.Generic.cs (1)
2124/// <inheritdoc cref="ISpanParsable{TSelf}.Parse(ReadOnlySpan{char}, IFormatProvider?)" />