<para>(Visual Basic)
콘텐츠의 서식이 단락으로 지정되도록 지정합니다.
구문
<para>content</para>
매개 변수
content
단락의 텍스트입니다.
설명
<para>
태그는 <summary>, <remarks>, <returns> 등의 태그 내에 사용되어 텍스트에 구조를 추가할 수 있게 합니다.
-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
참고 항목
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET