ImmutableListTCopyTo Method
Copies the elements of the ICollection to an Array, starting at a particular Array index.
Namespace: SnapDB.ImmutablesAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public void CopyTo(
T[] array,
int arrayIndex
)
Public Sub CopyTo (
array As T(),
arrayIndex As Integer
)
public:
virtual void CopyTo(
array<T>^ array,
int arrayIndex
) sealed
function CopyTo(array, arrayIndex);
- array T
-
The one-dimensional Array that is the destination of the elements copied from ICollection.
The Array must have zero-based indexing.
- arrayIndex Int32
- The zero-based index in array at which copying begins.
ICollectionTCopyTo(T, Int32)