<remarks> (Visual Basic)
更新:2007 年 11 月
指定成員的備註區段。
<remarks>description</remarks>
- description
為成員的描述。
使用 <remarks> 標記 (Tag) 可加入型別的相關資訊,補充以 <summary> (Visual Basic) 指定的資訊。物件瀏覽器會顯示此資訊。
使用 /doc 進行編譯,將文件註解處理為檔案。
這個範例會使用 <remarks> 標記來解釋 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