 | IJavaArraySetT(Int32, T) Method |
Set the elements in values starting from the position in startIndex
Namespace: MASES.JCOBridge.C2JBridge.JVMInteropAssembly: C2JBridge (in C2JBridge.dll) Version: 2.6.9.260611-9a148513a79c26cdd7f1dde468f4f9e06ef3bc7e
Syntaxvoid Set<T>(
int startIndex,
T[] values
)
Sub Set(Of T) (
startIndex As Integer,
values As T()
)
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