CircularListTCopyTo(T, Int32) Method
Copies the entire
CircularListT to a compatible one-dimensional array, starting at a particular array index.
Namespace: KGySoft.CollectionsAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.5.0
public void CopyTo(
T[] array,
int arrayIndex = 0
)
Public Sub CopyTo (
array As T(),
Optional arrayIndex As Integer = 0
)
public:
virtual void CopyTo(
array<T>^ array,
int arrayIndex = 0
) sealed
abstract CopyTo :
array : 'T[] *
?arrayIndex : int
(* Defaults:
let _arrayIndex = defaultArg arrayIndex 0
*)
-> unit
override CopyTo :
array : 'T[] *
?arrayIndex : int
(* Defaults:
let _arrayIndex = defaultArg arrayIndex 0
*)
-> unit
- array T
- The one-dimensional Array that is the destination of the elements copied from the CircularListT.
The Array must have zero-based indexing.
- arrayIndex Int32 (Optional)
- The zero-based index in array at which copying begins.
ICollectionTCopyTo(T, Int32)