UnityEngine.AndroidJNI.CallLongMethod C# (CSharp) Method

CallLongMethod() public static method

public static CallLongMethod ( IntPtr obj, IntPtr methodID, jvalue args ) : long
obj System.IntPtr
methodID System.IntPtr
args jvalue
return long
		public static long CallLongMethod(IntPtr obj, IntPtr methodID, jvalue[] args){}
		public static void CallVoidMethod(IntPtr obj, IntPtr methodID, jvalue[] args){}

Usage Example

コード例 #1
0
 public static long CallLongMethod(IntPtr obj, IntPtr methodID, jvalue[] args)
 {
     try
     {
         return(AndroidJNI.CallLongMethod(obj, methodID, args));
     }
     finally
     {
         AndroidJNISafe.CheckException();
     }
 }
All Usage Examples Of UnityEngine.AndroidJNI::CallLongMethod
AndroidJNI