I have a string:
LogoDataStr = \"ABC0000\"
I want to convert to ASCII bytes and the result should be:
LogoDataBy[0] = 0x41;
Just throwing:
Encoding.ASCII.GetBytes("ABC0000").Dump();
Into LinqPAD gives an output of (decimal):
Byte[] (7 items) 65 66 67 48 48 48 48
So I'm not sure how you're getting 0x00...