Array OfT Constructor |
Name | Description | |
---|---|---|
Array OfT | Create an empty array | |
Array OfT(IEnumerableT) | Create an array and fill it with elements from an existing collection. | |
Array OfT(Object) | Create an array and fill it with elements from an existing .Net array of objects. Note that the objects must be of the right type. | |
Array OfT(DWord) | Create an array with a certain capacity. | |
Array OfT(T) | Create an array and fill it with elements from an existing .Net array. | |
Array OfT(SerializationInfo, StreamingContext) | Construct a value from serialized data | |
Array OfT(DWord, Logic) | Create an array with a certain capacity and specify if it should be filled with default values. |