CodeTypeDeclarationCollection.Insert(Int32, CodeTypeDeclaration) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
このコレクション内の指定したインデックス位置に、指定した CodeTypeDeclaration オブジェクトを挿入します。
public:
void Insert(int index, System::CodeDom::CodeTypeDeclaration ^ value);
public void Insert (int index, System.CodeDom.CodeTypeDeclaration value);
member this.Insert : int * System.CodeDom.CodeTypeDeclaration -> unit
Public Sub Insert (index As Integer, value As CodeTypeDeclaration)
パラメーター
- index
- Int32
指定したオブジェクトの挿入位置を示す、0 から始まるインデックス。
- value
- CodeTypeDeclaration
挿入する CodeTypeDeclaration オブジェクト。
例
次の例では、 メソッドを使用 Insert して オブジェクトを CodeTypeDeclaration に挿入する方法を CodeTypeDeclarationCollection示します。
// Inserts a CodeTypeDeclaration at index 0 of the collection.
collection->Insert( 0, gcnew CodeTypeDeclaration( "TestType" ) );
// Inserts a CodeTypeDeclaration at index 0 of the collection.
collection.Insert( 0, new CodeTypeDeclaration("TestType") );
' Inserts a CodeTypeDeclaration at index 0 of the collection.
collection.Insert(0, New CodeTypeDeclaration("TestType"))
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET