<para> (Visual Basic)
更新:2007 年 11 月
指定已將內容格式化成段落。
<para>content</para>
參數
- content
為段落內的文字。
備註
<para> 標記 (Tag) 適合在標記內使用,例如 <summary> (Visual Basic)、<remarks> (Visual Basic) 或 <returns> (Visual Basic),並能讓您將結構加入至文字。
使用 /doc 進行編譯,將文件註解處理為檔案。
範例
這個範例會使用 <para> 標記,將 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