Table of Contents

Interface IJavaArray

Namespace
MASES.JCOBridge.C2JBridge.JVMInterop
Assembly
C2JBridge.dll

Interface for array objects, extends IJavaObjectBase

public interface IJavaArray : IJavaObjectBase, IEnumerable
Inherited Members
Extension Methods

Properties

Length

The array length

int Length { get; }

Property Value

int

Methods

Get(int)

Get accessor

object Get(int index)

Parameters

index int

The index to get

Returns

object

The value at index

Set(int, object)

Set accessor

void Set(int index, object value)

Parameters

index int

The index to set

value object

The value to set at index