Can I add XML comments to a method that allows other programmers to follow the URL by clicking on it in the tooltip?
I tried to add the method URL using the following format (I also tried using the see and see tags as well):
/// <summary> /// Loads some data. /// <a href="http://stackoverflow.com/">click me</a> /// </summary> /// <param name="id">The id.</param> /// <returns>Some Data</returns> private string LoadData(int id)
This creates a clickable URL hyperlink, however this only works when looking at the source code. If possible, I would like to click and follow the hyperlink in the tooltip displayed when you hover over the method call, and not on the method itself.
Walby source share