CodeStatementCollection.Add 方法

定义

将指定的 CodeStatement 添加到集合。

重载

Add(CodeExpression)

将指定的 CodeExpression 对象添加到集合。

Add(CodeStatement)

将指定的 CodeStatement 对象添加到集合。

Add(CodeExpression)

Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs

将指定的 CodeExpression 对象添加到集合。

public:
 int Add(System::CodeDom::CodeExpression ^ value);
public int Add (System.CodeDom.CodeExpression value);
member this.Add : System.CodeDom.CodeExpression -> int
Public Function Add (value As CodeExpression) As Integer

参数

value
CodeExpression

要添加的 CodeExpression 对象。

返回

新元素位置处插入的索引。

另请参阅

适用于

Add(CodeStatement)

Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs
Source:
CodeStatementCollection.cs

将指定的 CodeStatement 对象添加到集合。

public:
 int Add(System::CodeDom::CodeStatement ^ value);
public int Add (System.CodeDom.CodeStatement value);
member this.Add : System.CodeDom.CodeStatement -> int
Public Function Add (value As CodeStatement) As Integer

参数

value
CodeStatement

要添加的 CodeStatement 对象。

返回

新元素位置处插入的索引。

示例

以下示例演示如何将 对象添加到CodeStatementCodeStatementCollection实例。

// Adds a CodeStatement to the collection.
collection->Add( gcnew CodeCommentStatement( "Test comment statement" ) );
// Adds a CodeStatement to the collection.
collection.Add( new CodeCommentStatement("Test comment statement") );
' Adds a CodeStatement to the collection.
collection.Add(New CodeCommentStatement("Test comment statement"))

另请参阅

适用于