<seealso> (Visual Basic)
指定在<請參閱>一節中出現的連結。
<seealso cref="member"/>
參數
- member
對可以從目前編譯環境呼叫的成員或欄位的參考。編譯器會檢查特定程式碼項目是否存在,並將 member 傳遞給輸出 XML 中的項目名稱。member 須以用雙引號 (" ") 括住。
備註
使用 <seealso> 標記 (Tag) 來指定想要出現在<請參閱>一節中的文字。使用 <see> (Visual Basic) 從文字中指定連結。
使用 /doc 進行編譯,將文件註解處理為檔案。
範例
這個範例會在 DoesRecordExist 註解一節中使用 <seealso> 標記,以參考 UpdateRecord 方法。
''' <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