<c> (Visual Basic)
指出描述內的文字是程式碼。
語法
<c>text</c>
參數
參數 | 描述 |
---|---|
text |
您要指定為程式碼的文字。 |
備註
<c>
標記可讓您指出應該將描述內的文字標記為程式碼。 使用 <code>,以將多行指定為程式碼。
使用 -doc 編譯可處理檔案的文件註解。
範例
此範例在摘要區段中使用 <c>
標記來指出 Counter
是程式碼。
''' <summary>
''' Resets the value of 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