Example #1
0
 public override ulong ParseUInt64(ReadOnlySpan <char> value) => UnsignedInteger <ulong> .ParseUInt64(value);
Example #2
0
 public override ushort ParseUInt16(ReadOnlySpan <char> value) => UnsignedInteger <ushort> .ParseUInt16(value);
Example #3
0
 public override uint ParseUInt32(ReadOnlySpan <char> value) => UnsignedInteger <uint> .ParseUInt32(value);
Example #4
0
 public override byte ParseByte(ReadOnlySpan <char> value) => UnsignedInteger <byte> .ParseByte(value);
 public static ulong ParseUInt64(this ReadOnlySpan<char> value) => 
     UnsignedInteger<ulong>.ParseUInt64(value);
 public static uint ParseUInt32(this ReadOnlySpan<char> value) => 
     UnsignedInteger<uint>.ParseUInt32(value);
 public static ushort ParseUInt16(this ReadOnlySpan<char> value) => 
     UnsignedInteger<ushort>.ParseUInt16(value);
 public static byte ParseByte(this ReadOnlySpan<char> value) => 
     UnsignedInteger<byte>.ParseByte(value);