My MVC3/.Net service is receiving some arguments as a JSONified Javascript array, and I'd like to unpack them into a C# array of strings.
Is there an existing method for doing this, or do I have to write my own?
(currently the data comes in to my controller as a single string, and looks something like this:
"[\"string1\", \"string2\", \"string3\"]"