I noticed that the default help on constructors generated gives:
Initializes a new instance of the <a href="">CBase</a> class.
where CBase is a link. If you actually specify a summary tag (as you a supposed to for public members) the link isn't there. Is there any tags that can be used to provide the link without entering a <a href=""> tag in the comment?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I noticed that the default help on constructors generated gives:
Initializes a new instance of the <a href="">CBase</a> class.
where CBase is a link. If you actually specify a summary tag (as you a supposed to for public members) the link isn't there. Is there any tags that can be used to provide the link without entering a <a href=""> tag in the comment?
use <see cref="CBase"/> in the summary tag in place of the anchor tag, as in
/// <summary>
/// See Initializes a new instance of the <see cref="CBase"/> class.
///</summary>