I have a body of text that is innertext inside of an XML. Here are 3 lines of that string for example
0x2007A3C8,0xAE8900B8,
0x2007A3CC,0x000E5320,
0x2007A3D0,0x03E00008
So the innertext property is a string. I am trying to convert this entire string back into an uint array. So that for every comma adds a new array element.
x , x
x , x
Would be a total of 4 array elements.
I want to keep the hex syntax, everything. I just need this back into an uint array. Any ideas?