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