CodeParameterDeclarationExpressionCollection.Insert Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Вставляет в коллекцию заданный объект CodeParameterDeclarationExpression по указанному индексу.
public:
void Insert(int index, System::CodeDom::CodeParameterDeclarationExpression ^ value);
public void Insert (int index, System.CodeDom.CodeParameterDeclarationExpression value);
member this.Insert : int * System.CodeDom.CodeParameterDeclarationExpression -> unit
Public Sub Insert (index As Integer, value As CodeParameterDeclarationExpression)
Параметры
- index
- Int32
Индекс, отсчитываемый от нуля, по которому следует вставить указанный объект.
Вставляемый объект CodeParameterDeclarationExpression.
Примеры
В следующем примере показано, как использовать Insert метод для добавления CodeParameterDeclarationExpression объекта в CodeParameterDeclarationExpressionCollection.
// Inserts a CodeParameterDeclarationExpression at index 0
// of the collection.
collection->Insert( 0, gcnew CodeParameterDeclarationExpression( int::typeid,"testIntArgument" ) );
// Inserts a CodeParameterDeclarationExpression at index 0
// of the collection.
collection.Insert( 0, new CodeParameterDeclarationExpression(typeof(int), "testIntArgument") );
' Inserts a CodeParameterDeclarationExpression at index 0
' of the collection.
collection.Insert(0, New CodeParameterDeclarationExpression(GetType(Integer), "testIntArgument"))