Поделиться через


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

Индекс, отсчитываемый от нуля, по которому следует вставить элемент.

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)))

Применяется к

См. также раздел