CodeStatementCollection.Add 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 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"))