| MatTElemCopyTo Method (TElem, Int32) |
Copies the elements of the ICollection<T> to an Array, starting at a particular Array index.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public void CopyTo(
TElem[] array,
int arrayIndex
)
Public Sub CopyTo (
array As TElem(),
arrayIndex As Integer
)
public:
virtual void CopyTo(
array<TElem>^ array,
int arrayIndex
) sealed
abstract CopyTo :
array : 'TElem[] *
arrayIndex : int -> unit
override CopyTo :
array : 'TElem[] *
arrayIndex : int -> unit
Parameters
- array
- Type: TElem
The one-dimensional Array that is the destination of the elements copied from ICollection<T>.
The Array must have zero-based indexing. - arrayIndex
- Type: SystemInt32
The zero-based index in array at which copying begins.
Implements
ICollectionTCopyTo(T, Int32)See Also