I would like to take a textbox and basically inside it will be an ascii string that represents hex .. i..e
string bla = "A4 A6 AF AF A6 A7 A3 AE A7 A7 B6 A2 A0 A6 AE B6 A2 A6 A6 AF A0 A2 A6 A5 B6 A3 A1 B6 9C "
I would like to convert that string into
byte[] bla;
bla = {0xA4, 0xA6, 0xAF, 0xA6, 0xA7, 0xA3 ... }
can anyone help with this?
Start Free Trial