共用方式為


<value> (Visual Basic)

指定屬性的描述。

語法

<value>property-description</value>  

參數

property-description
屬性的描述。

備註

請使用 <value> 標記描述屬性。 請注意,當您在 Visual Studio 開發環境透過程式碼精靈新增屬性,就會為新屬性新增 <summary> 標記。 您接著應該手動新增 <value> 標記,藉此描述屬性所代表的值。

使用 -doc 編譯可處理檔案的文件註解。

範例

此範例使用 <value> 標記來描述 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

另請參閱