共用方式為


<param> (Visual Basic)

定義參數名稱和描述。

語法

<param name="name">description</param>  

參數

name
方法參數的名稱。 以雙引號 (" ") 括住名稱。

description
參數的描述。

備註

<param> 標記應該用於方法宣告的註解中,以描述該方法的其中一個參數。

<param> 標籤的文字會顯示在下列位置:

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

範例

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

另請參閱