I am sending my array of arrays from the client to the server. Using jQuery ajax method after stringify like this
JSON.stringify({ list: FinalList })
and on the server side I am getting it like this
{\"list\":[[\"Full Name\"],[\"Select any one\",\"Option 1\",\"Option 2\",\"Option 3\"],[\"address\"],[\"contact name\"]]}
But I am not able to change it to the original form again. I tried using JavaScriptSerializer but I was not able to get the required result. It's giving me an object.
How I will deserialize it to it's original form?