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.3.1
Syntax
ulong Write(
	T[] source,
	ulong sourceIndex,
	ulong length,
	ulong index
)

Parameters

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

Return Value

Type: UInt64
The number of elements copied.
See Also