Create ILArray of specified size and type
| C# | Visual Basic | Visual C++ |
public ILArray( BaseT[] data, ILDimension dimensions )
Public Sub New ( _ data As BaseT(), _ dimensions As ILDimension _ )
public: ILArray( array<BaseT>^ data, ILDimension^ dimensions )
- data (array< BaseT >[]()[])
- preallocated array with data. The array will directly be used for storage. No copy will be done.
- dimensions (ILDimension)
- dimension specification. The ILDimension given must not be null and will directly be used for the new object! No copy will be made for it!
The size parameter may not be null or empty!
An exception will be thrown in this case. The dimensions will be trimmed
before processing (removing non singleton dimensions from the end).
Depending on the requested size an ILArray of the specified type and
dimension will be created.