共用方式為


CodeStatementCollection.Insert(Int32, CodeStatement) 方法

定義

將指定的 CodeStatement 物件插入至集合中所指定索引處。

public:
 void Insert(int index, System::CodeDom::CodeStatement ^ value);
public void Insert (int index, System.CodeDom.CodeStatement value);
member this.Insert : int * System.CodeDom.CodeStatement -> unit
Public Sub Insert (index As Integer, value As CodeStatement)

參數

index
Int32

以零起始的索引,是應將指定物件插入的位置。

value
CodeStatement

要插入的 CodeStatement 物件。

範例

下列範例示範如何使用 Insert 方法將 物件新增 CodeStatementCodeStatementCollection

// Inserts a CodeStatement at index 0 of the collection.
collection->Insert( 0, gcnew CodeCommentStatement( "Test comment statement" ) );
// Inserts a CodeStatement at index 0 of the collection.
collection.Insert( 0, new CodeCommentStatement("Test comment statement") );
' Inserts a CodeStatement at index 0 of the collection.
collection.Insert(0, New CodeCommentStatement("Test comment statement"))

適用於

另請參閱