是否可以在 XML 文档中包含指向网站的链接?例如,我的方法总结为
///<Summary> /// This is a math function I found HERE. ///</Summary> public void SomeMathThing(Double[] doubleArray) { ... }
当我输入
SomeMathThing(
我希望 IntelliSense 显示摘要,并选择单击“此处”链接到外部网站。这可能吗?怎么做?
尝试:
///<Summary> /// This is a math function I found <see href="http://stackoverflow.com">HERE</see> ///</Summary>