C# XML Documentation Website Link -


is possible include link website in xml documentation? example, method's summarized as

///<summary> /// math function found here. ///</summary> public void somemaththing(double[] doublearray) {    ... } 

and when type

somemaththing( 

i want intellisense show summary option click on "here" link outside website. possible? how done?

try:

///<summary> /// math function found <see href="http://stackoverflow.com">here</see> ///</summary> 

Comments

Popular posts from this blog

android - How to save instance state of selected radiobutton on menu -

python 3 IndexError: list index out of range -

IF statement in MySQL trigger -