<c>(Visual Basic)
설명 안의 텍스트가 코드임을 나타냅니다.
<c>text</c>
매개 변수
Parameter |
설명 |
text |
코드로 나타낼 텍스트입니다. |
설명
<c> 태그를 사용하면 설명에 있는 텍스트를 코드로 표시할 수 있습니다.여러 줄을 코드로 표시하려면 <code>(Visual Basic)를 사용합니다.
/doc로 컴파일하여 문서 주석을 파일로 저장합니다.
예제
이 예제에서는 요약 섹션에 <c> 태그를 사용하여 Counter가 코드임을 나타냅니다.
''' <summary>
''' Resets the value the <c>Counter</c> field.
''' </summary>
Public Sub ResetCounter()
counterValue = 0
End Sub
Private counterValue As Integer = 0
''' <summary>
''' Returns the number of times Counter was called.
''' </summary>
''' <value>Number of times Counter was called.</value>
Public ReadOnly Property Counter() As Integer
Get
counterValue += 1
Return counterValue
End Get
End Property