|
ProcessQueueTCopyTo Method
|
Copies the entire
ProcessQueueT to a compatible one-dimensional array, starting at the beginning of the
target array.
Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
Syntaxpublic 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
abstract CopyTo :
array : 'T[] *
arrayIndex : int -> unit
override CopyTo :
array : 'T[] *
arrayIndex : int -> unit
function CopyTo(array, arrayIndex);
View SourceParameters
- array T
- The one-dimensional array that is the destination of the elements copied from ProcessQueueT. The
array must have zero-based indexing.
- arrayIndex Int32
- The zero-based index in array at which copying begins.
Implements
ICollectionTCopyTo(T, Int32)
Exceptions
See Also