<c> (Visual Basic)
更新:2007 年 11 月
表示描述內的文字是程式碼。
<c>text</c>
參數
- 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