24 base.List[index] = value;
55 return base.List.Add(value);
68 for (
int i = 0; i < value.Length; i++)
84 int count = value.Count;
85 for (
int i = 0; i < count; i++)
97 return base.List.Contains(value);
108 base.List.CopyTo(array, index);
116 return base.List.IndexOf(value);
124 base.List.Insert(index, value);
132 base.List.Remove(value);
The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method th...
Provides the abstract base class for a strongly typed collection.
Represents a collection of T:System.CodeDom.CodeAttributeArgument objects.
void Insert(int index, CodeAttributeArgument value)
Inserts the specified T:System.CodeDom.CodeAttributeArgument object into the collection at the specif...
bool Contains(CodeAttributeArgument value)
Gets a value that indicates whether the collection contains the specified T:System....
Represents an argument used in a metadata attribute declaration.
void AddRange(CodeAttributeArgument[] value)
Copies the elements of the specified T:System.CodeDom.CodeAttributeArgument array to the end of the c...
void CopyTo(CodeAttributeArgument[] array, int index)
Copies the collection objects to a one-dimensional T:System.Array instance beginning at the specified...
CodeAttributeArgumentCollection()
Initializes a new instance of the T:System.CodeDom.CodeAttributeArgumentCollection class.
Specifies that the class can be serialized.
ClassInterfaceType
Identifies the type of class interface that is generated for a class.
CodeAttributeArgumentCollection(CodeAttributeArgument[] value)
Initializes a new instance of the T:System.CodeDom.CodeAttributeArgumentCollection class containing t...
int IndexOf(CodeAttributeArgument value)
Gets the index of the specified T:System.CodeDom.CodeAttributeArgument object in the collection,...
CodeAttributeArgumentCollection(CodeAttributeArgumentCollection value)
Initializes a new instance of the T:System.CodeDom.CodeAttributeArgumentCollection class containing t...
void Remove(CodeAttributeArgument value)
Removes the specified T:System.CodeDom.CodeAttributeArgument object from the collection.
void AddRange(CodeAttributeArgumentCollection value)
Copies the contents of another T:System.CodeDom.CodeAttributeArgumentCollection object to the end of ...
int Add(CodeAttributeArgument value)
Adds the specified T:System.CodeDom.CodeAttributeArgument object to the collection.