Hi,
If I have a string like
"0000100000000001"
How do I convert it to bytes?
Something like
byte[] my_bytes = BitConverter.GetBytes("0000100000000001");
Which would result in the following:
my_bytes [0] = 0x08
my_bytes [1] = 0x01
Help much appreciated.