Adds a link into See Also list. A VSdocman comment may contain any number of <seealso> tags.

Syntax

<seealso cref="reference">[label]</seealso>

It adds a link, with visible text label, that points to the documentation for the specified reference. Warning appears during compilation if reference points to non-existing target. The label is optional. If omitted, instead of it the reference appears as the visible text. Use the label when you want the visible text to be abbreviated or different from the reference. It can contain whitespaces.

Examples

Visual Basic

''' <summary>Our sample property.</summary>

''' <remarks>This property is really interesting.</remarks>

''' <value>Some nice text.</value>

''' <seealso cref="TestDLL.DllClass1.prop2">Another interesting

''' property</seealso>

Property prop1() As String

C#

/// <summary>Our sample property.</summary>

/// <remarks>This property is really interesting.</remarks>

/// <value>Some nice text.</value>

/// <seealso cref="TestDLL.DllClass1.prop2">Another interesting

/// property</seealso>

public string prop1

 

See Also