I have the following code :
dynamic stuff = JsonConvert.DeserializeObject(\"{ \'Name\': \'Jon Smith\', \'Address\': [\'A\', \'B\', \'C\'], \'Age\': 42 }\"); var
You can use the same approach with Name property, then iterate the Address value, since it's an array
Name
Address
var address = stuff.Address; foreach (var item in address) { Console.WriteLine(item); }