Exemple #1
0
 /// <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));
 }
Exemple #2
0
 /// <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);
 }
Exemple #3
0
 /// <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));
 }
Exemple #4
0
 /// <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);
 }
Exemple #5
0
 /// <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));
 }