I want to parse a json to List how can we do that. I have tried the following code but it didnt worked
Dictionary<string, object> pGateways=(Dictionary<string,object>)Json.JsonParser.FromJson(jsonString);
List<object> creditOptions = new List<object>();
creditOptions = (List<object>)pGateways;
And after getting it int list i want to loop through it
Here is my sample json
{
    "MessageCode": "CS2009",
    "Status": "Y",
    "ErrorCode": "0",
    "ErrorDescription": "Success",
    "account": 
     {
        "card": 
        [
            {
                "cardend": "asd",
                "token": "aads",
                "cardstart": "asdad",
                "accounttype": "asda",
                "cardnetwork": "as",
                "issuer": "asd",
                "customername": "a",
                "expdate": "04/2018"
            },
            {
                "cardend": "asda",
                "token":"adssadsa",
                "cardstart": "asd",
                "accounttype": "asd",
                "cardnetwork": "asd",
                "issuer": "asda",
                "customername": "asd",
                "expdate": "03/2016"
            }
        ],
        "bank": []
    }
}
 
     
     
     
     
     
    