I have a string say :
string abc = "1023456789ABCD"
I want to convert it into a byte array like :
byte[0] = 0x10;
byte[1] = 0x23;
byte[2] = 0x45;
----
and so on
I checked some of the posts here but couldn't find the proper solution. Any help will be appreciated. Thanks in Advance.