public class NullableLargeArray<T> : IEnumerable<T>,
IEnumerable
Public Class NullableLargeArray(Of T)
Implements IEnumerable(Of T), IEnumerablegeneric<typename T>
public ref class NullableLargeArray : IEnumerable<T>,
IEnumerable| NullableLargeArrayT | Creates a NullableLargeArrayT. |
| Capacity | Gets the number of items that can be stored in the array. |
| CountFree | Gets the number of available spaces in the array. Equal to Capacity - CountUsed. |
| CountUsed | Gets the number of non-null items that are in the array. |
| Item | Gets the provided item from the array. |
| AddValue | Adds a new value to the list at the nearest possible empty location. If there is not enough room, the list is automatically expanded. |
| Clear | Clears all elements in the list |
| 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 an enumerator that iterates through the non-null elements of this collection. |
| GetHashCode | Serves as the default hash function. (Inherited from Object) |
| GetType | Gets the Type of the current instance. (Inherited from Object) |
| GetValue | Gets the specified item from the list. Throws an exception if the item is null. |
| HasValue | Checks if the element at the specified index has a value. |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object) |
| OverwriteValue | Overwrites the value at the specified index. |
| SetCapacity | Increases the capacity of the array to at least the given length. Will not reduce the size. |
| SetNull | Sets the following item to null. |
| SetValue | Sets the value at the specified index. |
| ToString | Returns a string that represents the current object. (Inherited from Object) |
| TryGetValue | Tries to get the value at the specified index if it exists. |