コード例 #1
0
 /// <devdoc>
 ///    <para>Adds a <see cref='Microsoft.CodeDom.CodeAttributeArgument'/> with the specified value to the
 ///    <see cref='Microsoft.CodeDom.CodeAttributeArgumentCollection'/> .</para>
 /// </devdoc>
 public int Add(CodeAttributeArgument value)
 {
     return(List.Add(value));
 }
コード例 #2
0
 /// <devdoc>
 ///    <para> Removes a specific <see cref='Microsoft.CodeDom.CodeAttributeArgument'/> from the
 ///    <see cref='Microsoft.CodeDom.CodeAttributeArgumentCollection'/> .</para>
 /// </devdoc>
 public void Remove(CodeAttributeArgument value)
 {
     List.Remove(value);
 }
コード例 #3
0
 /// <devdoc>
 ///    <para>Returns the index of a <see cref='Microsoft.CodeDom.CodeAttributeArgument'/> in
 ///       the <see cref='Microsoft.CodeDom.CodeAttributeArgumentCollection'/> .</para>
 /// </devdoc>
 public int IndexOf(CodeAttributeArgument value)
 {
     return(List.IndexOf(value));
 }
コード例 #4
0
 /// <devdoc>
 /// <para>Inserts a <see cref='Microsoft.CodeDom.CodeAttributeArgument'/> into the <see cref='Microsoft.CodeDom.CodeAttributeArgumentCollection'/> at the specified index.</para>
 /// </devdoc>
 public void Insert(int index, CodeAttributeArgument value)
 {
     List.Insert(index, value);
 }
コード例 #5
0
 /// <devdoc>
 /// <para>Gets a value indicating whether the
 ///    <see cref='Microsoft.CodeDom.CodeAttributeArgumentCollection'/> contains the specified <see cref='Microsoft.CodeDom.CodeAttributeArgument'/>.</para>
 /// </devdoc>
 public bool Contains(CodeAttributeArgument value)
 {
     return(List.Contains(value));
 }