The <seealso> tag is used to specify links appearing in a See Also section.
<seealso cref="member">[label]</seealso> OR <seealso href="URL">[label]</seealso>
where:
- label
- text to display as the link
- cref = "member"
- A reference to a member or field that is available to be called from the current compilation environment. The compiler checks that the given code element exists and passes member to the element name in the output XML. member must appear within double quotation marks (" ").
- href = "URL" [NDoc3 extension]
- A reference to a member or field that is available to be called from the current compilation environment. The compiler checks that the given code element exists and passes member to the element name in the output XML. member must appear within double quotation marks (" ").
Applies To
All Types and Members.
Remarks
Use <see> to specify an in-line link within text.
This is a 'top-level' tag. Do not nest this within other tags.
Note: Do not apply this tag to enumeration members. In the MSDN-style documenters, enumeration members are listed in a table on the enumeration type topic rather than individual topics, and any <seealso> tags will be ignored.
Example
See <summary> for an example of using <seealso>.