I used JSON.stringify to I have the following json string returned from javascript into a C# function:
"{
\"code\":\"OK\",
\"data\":[
[\"adidas\",167],
[\"adidas men's summer run basketball shoe\",35],
[\"adidas shoes\",12],
[\"adidas stan smith men\",9],
[\"adidas golf shoes\",9],
[\"adidas clothing\",9],
[\"adidas zxz nylon man shoes\",8],
[\"adidas uk\",8],
[\"adidas predator\",8],
[\"adidas perfume\",8],
[\"adidas basketball shoes\",8],
[\"puma and adidas shoes\",7],
[\"mi adidas\",7],
[\"mens discontinued adidas sandals\",7],
[\"climate cool mens discontinued adidas sandals\",7],
[\"china olympic adidas\",7],
[\"china olimpic adidas\",7],
[\"chaussure de foot adidas\",7],
[\"alex white adidas\",7],
[\"adidas superstars\",7]
]}"
Inside of the 'data' object sits an array of string & int values. I want to just get the string values out of the data arrayand into a List. How would I do this?