CodeCommentStatementCollection.Add(CodeCommentStatement) 方法

定义

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

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

参数

value
CodeCommentStatement

要添加的 CodeCommentStatement 对象。

返回

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

示例

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

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

适用于

另请参阅