Array Of<T> Constructor |
Name | Description | |
---|---|---|
Array Of(T)() | Create an empty array | |
Array Of(T)(IEnumerable(T)) | Create an array and fill it with elements from an existing collection. | |
Array Of(T)(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 Of(T)(DWord) | Create an array with a certain capacity. | |
Array Of(T)(T[]) | Create an array and fill it with elements from an existing .Net array. | |
Array Of(T)(SerializationInfo, StreamingContext) | Construct a value from serialized data | |
Array Of(T)(DWord, Logic) | Create an array with a certain capacity and specify if it should be filled with default values. |