<remarks>(Visual Basic)

멤버의 설명 섹션을 지정합니다.

구문

<remarks>description</remarks>  

매개 변수

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

설명

<remarks> 태그를 사용하면 형식에 대한 정보를 추가하고 <summary>로 지정된 정보를 보완할 수 있습니다.

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

-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

참고 항목