Copies elements from the specified array into the typed array.
Namespace: Microsoft.ClearScript.JavaScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
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 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
UInt64The number of elements copied.
See Also