Following is my javascript array which I am passing from the server.
string request = @"[[1,""Name"",""Sam"",""20""],1,""Name"",""Ram"",""20""]]";
I want to convert it into a List of C# object.
public class UpdateData
{
public int RowID { get; set; }
public string ColumnName { get; set; }
public string OldValue { get; set; }
public string NewValue { get; set; }
}
Is there a way to do that?