How can I go about adding a hyperlink (not a link to another workitem) to a workitem in TFS (using the API)?
Hyperlink hl = new Hyperlink("http://microsoft.com"); hl.Comment = "Microsoft"; workItem.Links.Add(hl);
Reference