I am trying to parse this Google calendar answer that I get from my Rest API using C #, but I seem to get stuck all the time. [edited] Update, the @ symbol does not interfere with drilling, I checked by replacing @ with _at_ . See screenshot of Quick Watch: 
I am sure that I am addressing this incorrectly ...
Here's jsonString I'm trying to parse:
{ "kind": "calendar#freeBusy", "timeMin": "2015-06-12T14:00:00.000Z", "timeMax": "2015-06-14T14:00:00.000Z", "calendars": { " joe@bobs.com ": { "busy": [ { "start": "2015-06-13T18:30:00Z", "end": "2015-06-13T19:30:00Z" }, { "start": "2015-06-13T20:30:00Z", "end": "2015-06-13T21:30:00Z" }, { "start": "2015-06-13T23:00:00Z", "end": "2015-06-14T00:00:00Z" } ] } } }
I tried using:
dynamic myObj = Json.Decode(jsonString);
and
var myObj = JsonConvert.DeserializeObject(jsonString);
but I canβt figure out how to enter the joe@bobs.com key (which is dynamic based on what I am sending) to cycle through all busy times.
Ideas?

source share