Integer
|
The IntegerCollection type exposes the following members.
| Name | Description | |
|---|---|---|
| IntegerCollection | Default constructor for the IntegerCollection class. Creates an empty interger collection of 10 elements. | |
| IntegerCollection(Int32) | Constructor for the IntegerCollection class. Creates an empty interger collection with the specified capacity. | |
| IntegerCollection(Int32) | Copy constructor for the IntegerCollection class. Creates an interger collection based on the passed array of integers. |
| Name | Description | |
|---|---|---|
| Capacity | Represents the number of elements that this collection can contain. | |
| Count | Represents the number of elements that this collection currently stores. | |
| IsFixedSize | Property that indicates whether this collection has a fixed size. | |
| IsReadOnly | Property that indicates whether this collection is read-only. | |
| IsSynchronized | Property that indicates whether access to this collection is thread-safe. | |
| Item | Property that represents an item from the collection at the specified index. | |
| SyncRoot | Property that represents an object that can be used to synchronize access to this collection. |
| Name | Description | |
|---|---|---|
| Add | Adds a value to the end of this interger collection. This method grows the collection capacity if necessary. | |
| AddRange | Adds a range of integer values to the end of this interger collection. This method grows the collection capacity if necessary. | |
| Clear | Clears this interger collection. | |
| Contains | Checks whether this interger collection contains the specified value. | |
| CopyTo | Copies the specified array to this interger collection at the specified index. | |
| Equals | Determines whether the specified object is equal to the current
object. (Inherited from Object) |
|
| Finalize | Allows an object to try to free resources and perform other
cleanup operations before it is reclaimed by garbage
collection. (Inherited from Object) |
|
| GetEnumerator | Returns the enumerator for this integer collection. | |
| GetHashCode | Serves as the default hash function. (Inherited from Object) |
|
| GetType | Gets the Type of the current
instance. (Inherited from Object) |
|
| IndexOf | Returns an index in the collection of the specified value. | |
| Insert | Inserts the specified value to the collection at the provided index. | |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
|
| Remove | Removes the specified value from the collection. | |
| RemoveAt | Removes a value from the collection at the specified index. | |
| ToArray | Returns a handle to an array that represents this integer collection. | |
| ToString | Returns a string that represents the current object. (Inherited from Object) |
|
| TrimToSize | Sets the capacity to the actual number of elements in this integer collection. |
| Name | Description | |
|---|---|---|
| DefaultSize | Size of the default integer collection. |
| © Bricsys NV. All rights reserved. |