7 implementations of Parse
Microsoft.AspNetCore.Http.Microbenchmarks (1)
src\Http\Http.Extensions\test\RequestDelegateGenerator\SharedTypes.cs (1)
1037static TodoWithExplicitIParsable IParsable<TodoWithExplicitIParsable>.Parse(string s, IFormatProvider provider)
System.Net.Primitives (3)
System\Net\IPAddress.cs (1)
318static IPAddress IParsable<IPAddress>.Parse(string s, IFormatProvider? provider) =>
System\Net\IPEndPoint.cs (1)
240static IPEndPoint IParsable<IPEndPoint>.Parse(string s, IFormatProvider? provider) => Parse(s);
System\Net\IPNetwork.cs (1)
360static IPNetwork IParsable<IPNetwork>.Parse([NotNull] string s, IFormatProvider? provider) => Parse(s);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Boolean.cs (1)
405static bool IParsable<bool>.Parse(string s, IFormatProvider? provider) => Parse(s);
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1979static char IParsable<char>.Parse(string s, IFormatProvider? provider) => Parse(s);
src\libraries\System.Private.CoreLib\src\System\String.cs (1)
756static string IParsable<string>.Parse(string s, IFormatProvider? provider)
4 references to Parse
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\DateOnly.cs (1)
892/// <inheritdoc cref="IParsable{TSelf}.Parse(string, IFormatProvider?)" />
src\libraries\System.Private.CoreLib\src\System\Guid.cs (1)
1836/// <inheritdoc cref="IParsable{TSelf}.Parse(string, IFormatProvider?)" />
src\libraries\System.Private.CoreLib\src\System\TimeOnly.cs (1)
1061/// <inheritdoc cref="IParsable{TSelf}.Parse(string, IFormatProvider?)" />
System.Runtime.Numerics (1)
System\Numerics\Complex.cs (1)
2245/// <inheritdoc cref="IParsable{TSelf}.Parse(string, IFormatProvider?)" />