I need to convert Json string e.g. ["value1","value2","value3","value4"] into a array of Tuples such as,
Tuple<value1,value2> Tuple<value3,value4> I was thinking of converting the json string into string [] and then convert it to one Tuple at a time, but wondering if there is an easy way of doing it?