/// <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)); }
/// <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); }
/// <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)); }
/// <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); }
/// <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)); }