05-13-2014 03:20 AM
I have a string represented in hex format, how can I convert this to an array of 16 bit unsigned integers?
I know I can use string to byte array to easily convert it to 8 but unsigned integers, is there a simple way for 16 bit unsigned integers?
Solved! Go to Solution.
05-13-2014 03:46 AM - edited 05-13-2014 03:49 AM
05-13-2014 04:33 AM - edited 05-13-2014 04:34 AM
@hydzik wrote:
I have a string represented in hex format, how can I convert this to an array of 16 bit unsigned integers?
I know I can use string to byte array to easily convert it to 8 but unsigned integers, is there a simple way for 16 bit unsigned integers?
While your description is somewhat vague and not very clear, I think the typecast solution from the previous poster may not be what you look for. You may more likely look for something along these lines:
05-13-2014 04:47 AM
Thanks, type cast was what I was after.
03-21-2025 02:46 PM