关于 c#:如何从工作项 id 知道工作项类型?

How to know work item type from work item id?

我有工作项 ID

1
2
int id =int.Parse(Request.QueryString["ID"],System.Globalization.CultureInfo.CurrentCulture);
WorkItem item= DataManager.DevelopmentProject.Store.GetWorkItem(id);

我需要知道var工作项类型是什么?(错误、变更请求等)


我是这样解决的

1
item.Fields["Work Item Type"].Value

我会使用 :

1
2
3
4
5
6
var type = item.GetType()
if(type == typeof(Bug))
{
    //Do something
}
...