CodeExpressionCollection.Insert(Int32, CodeExpression) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的 CodeExpression 物件插入至集合中所指定索引處。
public:
void Insert(int index, System::CodeDom::CodeExpression ^ value);
public void Insert (int index, System.CodeDom.CodeExpression value);
member this.Insert : int * System.CodeDom.CodeExpression -> unit
Public Sub Insert (index As Integer, value As CodeExpression)
參數
- index
- Int32
以零起始的索引,是應將指定物件插入的位置。
- value
- CodeExpression
要插入的 CodeExpression 物件。
範例
下列範例示範如何使用 Insert 方法將 物件新增 CodeExpression 至 CodeExpressionCollection。
// Inserts a CodeExpression at index 0 of the collection.
collection->Insert( 0, gcnew CodePrimitiveExpression( true ) );
// Inserts a CodeExpression at index 0 of the collection.
collection.Insert( 0, new CodePrimitiveExpression(true) );
' Inserts a CodeExpression at index 0 of the collection.
collection.Insert(0, New CodePrimitiveExpression(True))