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