/// Initializes a new instance of <see cref='System.CodeDom.CodeCommentStatementCollection'/>.
/// </para>
/// </devdoc>
publicCodeCommentStatementCollection(){
}
/// <devdoc>
/// <para>
/// Initializes a new instance of <see cref='System.CodeDom.CodeCommentStatementCollection'/> based on another <see cref='System.CodeDom.CodeCommentStatementCollection'/>.
/// Initializes a new instance of <see cref='System.CodeDom.CodeCommentStatementCollection'/> containing any array of <see cref='System.CodeDom.CodeCommentStatement'/> objects.
/// <see cref='System.CodeDom.CodeCommentStatementCollection'/> contains the specified <see cref='System.CodeDom.CodeCommentStatement'/>.</para>
/// </devdoc>
publicboolContains(CodeCommentStatementvalue){
returnList.Contains(value);
}
/// <devdoc>
/// <para>Copies the <see cref='System.CodeDom.CodeCommentStatementCollection'/> values to a one-dimensional <see cref='System.Array'/> instance at the
/// <para>Returns the index of a <see cref='System.CodeDom.CodeCommentStatement'/> in
/// the <see cref='System.CodeDom.CodeCommentStatementCollection'/> .</para>
/// </devdoc>
publicintIndexOf(CodeCommentStatementvalue){
returnList.IndexOf(value);
}
/// <devdoc>
/// <para>Inserts a <see cref='System.CodeDom.CodeCommentStatement'/> into the <see cref='System.CodeDom.CodeCommentStatementCollection'/> at the specified index.</para>