Click or drag to resize

ITypedArrayTWrite Method

Copies elements from the specified array into the typed array.

Namespace: Microsoft.ClearScript.JavaScript
Assembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax
ulong Write(
	T[] source,
	ulong sourceIndex,
	ulong length,
	ulong index
)

Parameters

source  T
The array from which to copy the elements.
sourceIndex  UInt64
The index within source of the first element to copy.
length  UInt64
The maximum number of elements to copy.
index  UInt64
The index within the typed array at which to store the first copied element.

Return Value

UInt64
The number of elements copied.
See Also