次の方法で共有


CodeTypeReferenceCollection.Insert(Int32, CodeTypeReference) メソッド

定義

CodeTypeReference をコレクション内の指定したインデックスに挿入します。

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

パラメーター

index
Int32

項目を挿入する位置の 0 から始まるインデックス番号。

value
CodeTypeReference

挿入する CodeTypeReference

// Inserts a CodeTypeReference at index 0 of the collection.
collection->Insert( 0, gcnew CodeTypeReference( bool::typeid ) );
// Inserts a CodeTypeReference at index 0 of the collection.
collection.Insert( 0, new CodeTypeReference(typeof(bool)) );
' Inserts a CodeTypeReference at index 0 of the collection.
collection.Insert(0, New CodeTypeReference(GetType(Boolean)))

適用対象

こちらもご覧ください