共用方式為


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

參數

傳回

要插入新項目的索引。

範例

下列範例示範如何將 物件新增 CodeParameterDeclarationExpressionCodeParameterDeclarationExpressionCollection 實例。

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

適用於

另請參閱