I have a json string that was created from serializing an array of objects :
[
    {
        "html": "foo"
    },
    {
        "html": "bar"
    }
]
How can I deserialize it to some iterable C# structure ? I've tried this code, but I'm getting No parameterless constructor defined for type of 'System.String'. error :
string[] htmlArr = new JavaScriptSerializer().Deserialize<String[]>(html);
What I want to receive is an iterable structure to get each 'html' object.