Hi Danny, This looks like what I'm after except I'm getting two errors when implemented: Error 1 Using the generic type 'System.Converter' requires '2' type arguments Error 2 The type arguments for method 'System.Array.ConvertAll(TInput[], System.Converter)' cannot be inferred from the usage. Try specifying the type arguments explicitly. What did I do wrong?
W
worked on mine
@worked on mine
Posts
-
String data into byte array without hex conversion -
String data into byte array without hex conversionHow do I get string data into a byte array, programmatically, without doing a hex conversion. i.e., byte[i] = (???)string.Substring(0,2); I need the programmatic equivelent of: byte[] bytes = {0x14, 0x55, 0x90, 0x00, 0x01}; or byte[i] = {0x + string} I can't make any of this work. Need Guru! TIA, Steve