<remarks>(Visual Basic)
멤버에 대한 설명 부분을 지정합니다.
<remarks>description</remarks>
매개 변수
- description
멤버에 대한 설명입니다.
설명
형식에 대한 정보를 추가하여 <summary>(Visual Basic)로 지정된 정보를 보충하려면 <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