Click or drag to resize

ITypedArrayTRead Method

Copies elements from the typed array into the specified array.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
ulong Read(
	ulong index,
	ulong length,
	T[] destination,
	ulong destinationIndex
)

Parameters

index  UInt64
The index within the typed array of the first element to copy.
length  UInt64
The maximum number of elements to copy.
destination  T
The array into which to copy the elements.
destinationIndex  UInt64
The index within destination at which to store the first copied element.

Return Value

UInt64
The number of elements copied.
See Also