<paramref>(Visual Basic)
단어에 매개 변수 서식을 지정합니다.
<paramref name="name"/>
매개 변수
- name
참조할 매개 변수의 이름입니다.name은 큰따옴표(" ")로 묶습니다.
설명
<paramref> 태그를 사용하면 특정 단어가 매개 변수임을 나타낼 수 있습니다.이제 XML 파일을 처리하여 이 매개 변수를 다른 방식으로 서식화할 수 있습니다.
/doc로 컴파일하여 문서 주석을 파일로 저장합니다.
예제
다음 예제에서는 <paramref> 태그를 사용하여 id 매개 변수를 참조합니다.
''' <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