I'm receiving something from my front, which represents a string of a UintArray. Let's say I receive this :
"{"0":122,"1":127,"2":233,"3":149,"4":116,"5":228,"6":91,"7":80,"8":28,"9":111,"10":148,"11":62,"12":45,"13":116,"14":191,"15":157}"
I would like to transform this in an array like this, without the indexes (my UintArray):
[122, 127, 233, 149, 116, 228, 91, 80, 28, 111, 148, 62, 45, 116, 191, 157]
And then, decode it. Is that possible, and is there an easy way to do it? I'm kinda new with the use of C#, and using, for professional purposes, the .net framework version 4.5. Thanks.