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?
Try:
///<Summary>
/// This is a math function I found <see href="http://stackoverflow.com">HERE</see>
///</Summary>