TheIntArray |
Scroll |
As the name suggests, the TheIntArray class is a type-safe array of integers. The array automatically grows when items are added beyond the current capacity.
Adding and removing items
Accessing items by index
For-Each iteration
Namespace: Therefore.API
Visual Basic Public Class TheIntArray C# public class TheIntArray |
Name |
Description |
Gets the number of integers in the array. |
|
Gets or sets the integer with the specified index. |
Name |
Description |
Adds the specified integer to the array and grows it if necessary. |
|
Adds all values specified IntArray. |
|
Removes all elements from the list. |
|
Returns a copy of the array. |
|
Checks if the array contains the specified integer. |
|
Returns an enumerator for this array. |
|
Removes the item with the specified index from the array. |
|
Returns a string representation of the object (for debugging). |