Concatenate this array
| C# | Visual Basic | Visual C++ |
public ILLogicalArray Concat( ILArray<byte> inArray, int leadDim )
Public Function Concat ( _ inArray As ILArray(Of Byte), _ leadDim As Integer _ ) As ILLogicalArray
public: ILLogicalArray^ Concat( ILArray<unsigned char>^ inArray, int leadDim )
- inArray (ILArray<(Of <(Byte>)>))
- N-dimensional storage. Except for dimensions leadDim the dimensions must match the dimensions of this storage.
- leadDim (Int32)
- index of dimension to concatenate arrays along. If leadDim is larger than the number of dimensions of any of the arrays its value will be used in modulus
logical array having the size
of both input arrays layed behind each other along the leadDim's-dimension
The array returned will be a
- reference storage, if inArray is the same as this array (object references are the same) and ILArray.MinimumRefDimensions is less or equal the number of dimensions of the resulting storage, or a
- physical storage else.