/// <devdoc> /// <para>Adds a <see cref='Microsoft.CodeDom.CodeCommentStatement'/> with the specified value to the /// <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> .</para> /// </devdoc> public int Add(CodeCommentStatement value) { return(List.Add(value)); }
/// <devdoc> /// <para> Removes a specific <see cref='Microsoft.CodeDom.CodeCommentStatement'/> from the /// <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> .</para> /// </devdoc> public void Remove(CodeCommentStatement value) { List.Remove(value); }
/// <devdoc> /// <para>Returns the index of a <see cref='Microsoft.CodeDom.CodeCommentStatement'/> in /// the <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> .</para> /// </devdoc> public int IndexOf(CodeCommentStatement value) { return(List.IndexOf(value)); }
/// <devdoc> /// <para>Inserts a <see cref='Microsoft.CodeDom.CodeCommentStatement'/> into the <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> at the specified index.</para> /// </devdoc> public void Insert(int index, CodeCommentStatement value) { List.Insert(index, value); }
/// <devdoc> /// <para>Gets a value indicating whether the /// <see cref='Microsoft.CodeDom.CodeCommentStatementCollection'/> contains the specified <see cref='Microsoft.CodeDom.CodeCommentStatement'/>.</para> /// </devdoc> public bool Contains(CodeCommentStatement value) { return(List.Contains(value)); }