Copies elements from the typed array into the specified array.
Namespace:
Microsoft.ClearScript.JavaScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.3
Syntaxulong Read(
ulong index,
ulong length,
T[] destination,
ulong destinationIndex
)
Function Read (
index As ULong,
length As ULong,
destination As T(),
destinationIndex As ULong
) As ULong
unsigned long long Read(
unsigned long long index,
unsigned long long length,
array<T>^ destination,
unsigned long long destinationIndex
)
abstract Read :
index : uint64 *
length : uint64 *
destination : 'T[] *
destinationIndex : uint64 -> uint64
Parameters
- index
- Type: SystemUInt64
The index within the typed array of the first element to copy. - length
- Type: SystemUInt64
The maximum number of elements to copy. - destination
- Type: T
The array into which to copy the elements. - destinationIndex
- Type: SystemUInt64
The index within destination at which to store the first copied element.
Return Value
Type:
UInt64The number of elements copied.
See Also