2 implementations of IHexOrBinaryParser
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (2)
534private readonly struct HexParser<TInteger> : IHexOrBinaryParser<TInteger> where TInteger : unmanaged, IBinaryIntegerParseAndFormatInfo<TInteger> 544private readonly struct BinaryParser<TInteger> : IHexOrBinaryParser<TInteger> where TInteger : unmanaged, IBinaryIntegerParseAndFormatInfo<TInteger>
1 reference to IHexOrBinaryParser
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Number.Parsing.cs (1)
557where TParser : struct, IHexOrBinaryParser<TInteger>