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
Post a Comment