Do you guys know how to convert this string array to byte array?
string[] _str= { "01", "02", "03", "FF"}; to byte[] _Byte = { 0x1, 0x2, 0x3, 0xFF};
I've tried this, but it doesn't work. _Byte = Array.ConvertAll(_str, Byte.Parse);
or convert
string s = "00 02 03 FF" to byte[] _Byte = { 0x1, 0x2, 0x3, 0xFF}; straight away?