This version of Unity is unsupported.

AndroidJavaObject.Get

Declaration

public FieldType Get(string fieldName);

Parameters

fieldName The name of the field (e.g. int counter; would have fieldName = "counter").

Description

Get the value of a field in an object (non-static).

The generic parameter determines the field type.


Declaration

public FieldType Get(IntPtr fieldID);

Parameters

fieldID The ID of the field to get.

Description

Get the value of a field in an object (non-static).

The generic parameter determines the field type.