Aracılığıyla paylaş


CodeParameterDeclarationExpressionCollection.Add Yöntem

Tanım

Belirtilen CodeParameterDeclarationExpression öğesini koleksiyona ekler.

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

Parametreler

Döndürülenler

Yeni öğenin eklendiği dizin.

Örnekler

Aşağıdaki örnekte bir örneğe nesne CodeParameterDeclarationExpressionCollection ekleme CodeParameterDeclarationExpression işlemi gösterilmektedir.

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

Şunlara uygulanır

Ayrıca bkz.