Property | Type | Description | |
---|---|---|---|
IEnumerable | IEnumerator |
Method | Description | |
---|---|---|
Clear ( ) : void |
Removes all items from the collection.
|
|
CopyTo ( |
Copies the items of the collection to an Array, starting at a particular index.
|
|
RemoveAt ( int index ) : void |
Removes an item at a specific index.
|
Method | Description | |
---|---|---|
DataTypeCollectionBase ( ) : System |
Initializes a new instance of the DataTypeCollectionBase class.
|
|
RangeCheck ( int index ) : void |
Checks whether the specified index is within the range of this collection.
|
|
ValidateType ( object value ) : void |
Used by methods that take object instances as argument to verify whether the instance is valid for the collection class.
|
Method | Description | |
---|---|---|
IEnumerable ( ) : IEnumerator |
Returns an enumerator that can iterate through a collection.
|
public CopyTo ( |
||
array | The one-dimensional |
|
index | int | The zero-based index in |
return | void |
protected DataTypeCollectionBase ( ) : System | ||
return | System |
protected RangeCheck ( int index ) : void | ||
index | int | The index to check. |
return | void |
public RemoveAt ( int index ) : void | ||
index | int | The zero-based index of the item to remove. |
return | void |
protected ValidateType ( object value ) : void | ||
value | object | The instance to verify. |
return | void |