<para>(Visual Basic)
단락 서식을 지정합니다.
<para>content</para>
매개 변수
- content
단락 텍스트입니다.
설명
<para> 태그는 <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