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