다음을 통해 공유


< > 설명(Visual Basic)

멤버에 대한 설명 섹션을 지정합니다.

문법

<remarks>description</remarks>  

매개 변수

description
멤버에 대한 설명입니다.

비고

태그를 <remarks> 사용하여 형식에 대한 정보를 추가하고 요약으로 <지정된 정보를 보완합니다>.

이 정보는 개체 브라우저에 나타납니다. 개체 브라우저에 대한 자세한 내용은 코드 구조 보기를 참조하세요.

-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

참고하십시오