Ok, I\'m having some difficult with this.
My JSON is like
{ \"names\" : [ {\"name\":\"bla\"} , {\"name\":\"bla2\"} ] }
I was trying
I'm using JSON.NET ( http://james.newtonking.com/projects/json-net.aspx ) normally, so my code might vary a bit.
For the list content I would go for a class with a name property like that:
public class NameClass {
public string name { get;set; }
}
Then you should be able to deserialize with JSON.NET a List:
List result = JsonConvert.Deserialize>(jsonString);
This is written out of my head, so maybe, it doesn't compile with copy and paste, but it should work as a sample.