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.2.3
Syntax
ulong Read(
	ulong index,
	ulong length,
	T[] destination,
	ulong destinationIndex
)

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: UInt64
The number of elements copied.
See Also