public List<string> ListAllProjects(){
TeamFoundationServer teamFoundationServer =
TeamFoundationServerFactory.GetServer(@"http:\\ld-tfs08sp1:8080\\");
teamFoundationServer.Authenticate();
WorkItemStore workItemStore = new WorkItemStore(@"http:\\ld-tfs08sp1:8080\\");
List<string> list = new List<string>();
foreach (Project pr in workItemStore.Projects)
{
list.Add(pr.Name);
}
if (list.Count == 0)
list.Add("Not Found");
return list;
}
Run Code Online (Sandbox Code Playgroud) 我正在开展一个小项目,我需要使用OpenGL + QT
我是两个人中的新手.所以我需要一个很好的教程来说明如何彼此合作而不是单独使用它们
在QT Creator上使用OpenGL或使用QT Visual Studio插件更好吗?