Ejemplo n.º 1
0
        public string ConvertHexToDec(string hex)
        {
            var result     = _hexReader.ToByteArray(hex, Endian.Big).ToArray();
            var bigInteger = new System.Numerics.BigInteger(result);

            return(bigInteger.ToString());
        }
Ejemplo n.º 2
0
 public override byte[] ReadBytes(int count) => _hexReader.ToByteArray(base.ReadBytes(count * 2));