Can anyone tell me how I can access the properties "Blocked" & "Root cause" of a Work Item?
I tried the following but it doesn't seem to be right:
// Code to connect to TFS
WorkItem workItem = workItemStore.GetWorkItem(1234);
string blocked = workItem.Fields["Blocked"].Value.ToString();
string rootCause = workItem.Fields["Root Cause"].Value.ToString();