This question is basically the same as this one, although the answer to that person's problem turned out to be a simple trailing space.
My issue is that I'm retrieving data from a web API as dictionary and then trying get the values out of it. I'm using TryGetValue because not every item in the dictionary will necessarily contain every key. For some reason, whilst I can get the value of one key with no problems at all when it's present, for another key TryGetValue always evaluates to false and therefore doesn't return the value, even though I can see in debug that the key is present.
So, this block always retrieves the value of the "System.Description" key if it's present:
string descriptionValue = ""; if (workItem.Fields.TryGetValue("System.Description", out descriptionValue)) { feature.Description = descriptionValue; } However, this almost identical block NEVER retrieves the value of the "CustomScrum.RoadmapGroup" key:
int RoadmapGroupValue = 0; if (workItem.Fields.TryGetValue("CustomScrum.RoadmapGroup", out RoadmapGroupValue)) { feature.RoadmapGroup = RoadmapGroupValue; } As you can see in this screenshot, the dictionary DOES contain a key with a name exactly matching my TryGetValue statement: 
If I put a breakpoint on the code which should be run if the TryGetValue statement evaluates to true (feature.Description = descriptionValue;) it never gets hit.
The feature.RoadmapGroup variable gets set to 0 for every item in the dictionary.
I've been staring at this for the last two hours at least and I can't see what I'm doing wrong.

TryGetValuestill evaluates to false and never runs the code it should if it finds the key.workItem.Fields["CustomScrum.RoadmapGroup"]and see if you can retrieve your value?TryGetValueblock withfeature.RoadmapGroup = (int)workItem.Fields["CustomScrum.RoadmapGroup"];, I get aSystemInvalidCastExceptionerror. I'm casting to an integer because feature.RoadmapGroup is an integer.