小编典典

C# XML 文档网站链接

all

是否可以在 XML 文档中包含指向网站的链接?例如,我的方法总结为

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

当我输入

SomeMathThing(

我希望 IntelliSense 显示摘要,并选择单击“此处”链接到外部网站。这可能吗?怎么做?


阅读 61

收藏
2022-06-23

共1个答案

小编典典

尝试:

///<Summary>
/// This is a math function I found <see href="http://stackoverflow.com">HERE</see>
///</Summary>
2022-06-23