Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GetSignature

Creates the JNI signature string for particular object type.
Read time 1 minuteLast updated 10 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.AndroidJNIModule

GetSignature(Object)

Creates the JNI signature string for particular object type.
public static string GetSignature(object obj)

Parameters

Object for which a signature is to be produced.

Returns

Type

Description

string

GetSignature(Object[])

Creates the JNI signature string for an object parameter list.
public static string GetSignature(object[] args)

Parameters

Array of object for which a signature is to be produced.

Returns

Type

Description

string

GetSignature<T>(Object[])

Creates the JNI signature string for an object parameter list.
public static string GetSignature<ReturnType>(object[] args)

Parameters

Array of object for which a signature is to be produced.

Returns

Type

Description

string

Remarks

The generic parameter represents the method return type.