How can I convert a string like this
string s = "00-11-22-33-44-55-66-77-88-99-00-11-22-3A-4A-5A";
to a byte array like this
byte[] b = new byte[] { 0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, 0x00, 0x11, 0x22, 0x3A, 0x4A, 0x5A };