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
Syntaxulong Write(
T[] source,
ulong sourceIndex,
ulong length,
ulong index
)
Function Write (
source As T(),
sourceIndex As ULong,
length As ULong,
index As ULong
) As ULong
unsigned long long Write(
array<T>^ source,
unsigned long long sourceIndex,
unsigned long long length,
unsigned long long index
)
abstract Write :
source : 'T[] *
sourceIndex : uint64 *
length : uint64 *
index : uint64 -> uint64
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:
UInt64The number of elements copied.
See Also