In byteconverter library.. this member:
IntsFromBytes (bytes() As Byte) As Int()
Takes an array of Bytes and returns an array of Ints converted from that array.
I was expecting the result is a Hex value as promised, (not Integer)
in other words:
26 a3 4e df should be 26, A3, 4E, DF, or 0x26, 0xA4.... etc. but not 38, 163....etc. otherwise the function should have named DecFromBytes.
What do you think guys?
Takes an array of Bytes and returns an array of Ints converted from that array.
I was expecting the result is a Hex value as promised, (not Integer)
in other words:
26 a3 4e df should be 26, A3, 4E, DF, or 0x26, 0xA4.... etc. but not 38, 163....etc. otherwise the function should have named DecFromBytes.
What do you think guys?