C# XML Documentation Website Link

Is it possible to include a link to a website in the XML documentation? For example, my method’s summarized as

///<Summary>
/// This is a math function I found HERE.
///</Summary>
public void SomeMathThing(Double[] doubleArray)
{
   ...
}

and when I type

SomeMathThing(

I want IntelliSense to show the summary with the option to click on “HERE” to link to an outside website. Is this possible? How would it be done?

6 Answers
6

Leave a Comment