Click or drag to resize

IJavaArraySetT(Int32, T) Method

Set the elements in values starting from the position in startIndex

Namespace: MASES.JCOBridge.C2JBridge.JVMInterop
Assembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntax
void Set<T>(
	int startIndex,
	T[] values
)

Parameters

startIndex  Int32
The start index to get
values  T
The values to set starting from startIndex

Type Parameters

T
The element type of values. Supported types are native primitives (bool, byte, char, short, int, long, float, double), IJavaArray, and IJavaObject. Passing a type inconsistent with the actual JVM array element type results in undefined behaviour at runtime.
See Also