<see> (Visual Basic)
他のメンバーへのリンクを指定します。
<see cref="member"/>
パラメーター
- member
現在のコンパイル環境からの呼び出しに利用できる、メンバーまたはフィールドへの参照。 コンパイラは、指定されたコード要素が存在するかどうかを確認し、member を出力 XML 内の要素名に渡します。 member は、二重引用符 (" ") で囲みます。
解説
テキスト内でリンクを指定するには、<see> タグを使用します。 "参照" のセクションに示すテキストには、<seealso> (Visual Basic) タグを使用します。
コンパイル時に /doc を指定してドキュメント コメントをファイルに出力します。
使用例
この例では、<see> タグを UpdateRecord の解説セクションで使用して、DoesRecordExist メソッドを参照します。
''' <param name="id">The ID of the record to update.</param>
''' <remarks>Updates the record <paramref name="id"/>.
''' <para>Use <see cref="DoesRecordExist"/> to verify that
''' the record exists before calling this method.</para>
''' </remarks>
Public Sub UpdateRecord(ByVal id As Integer)
' Code goes here.
End Sub
''' <param name="id">The ID of the record to check.</param>
''' <returns><c>True</c> if <paramref name="id"/> exists,
''' <c>False</c> otherwise.</returns>
''' <remarks><seealso cref="UpdateRecord"/></remarks>
Public Function DoesRecordExist(ByVal id As Integer) As Boolean
' Code goes here.
End Function