共用方式為


<code> (Visual Basic)

表示文字為多行程式碼。

語法

<code>content</code>  

參數

content
要標示為程式碼的文字。

備註

使用 <code> 標籤表示有多行為程式碼。 使用 <c> 標示描述內的文字應標記為程式碼。

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

範例

此範例使用 <code> 標籤來包含使用 ID 欄位的範例程式碼。

Public Class Employee
    ''' <remarks>
    ''' <example> This sample shows how to set the <c>ID</c> field.
    ''' <code>
    ''' Dim alice As New Employee
    ''' alice.ID = 1234
    ''' </code>
    ''' </example>
    ''' </remarks>
    Public ID As Integer
End Class

另請參閱