02-18-2010, 02:32 PM
It's quite easy to do.
Store the value in a string eg.
Use a for loop to loop through the string and get the start index (move it by 2 each time), and use Substring() and have the length parameter 2 (and startIndex parameter would be the for loop variable).
Store the value in a string eg.
Code:
string hexValue = "65B710";
Use a for loop to loop through the string and get the start index (move it by 2 each time), and use Substring() and have the length parameter 2 (and startIndex parameter would be the for loop variable).