UnityEngine.AndroidJNI.CallLongMethod C# (CSharp) 메소드

CallLongMethod() 공개 정적인 메소드

public static CallLongMethod ( IntPtr obj, IntPtr methodID, jvalue args ) : long
obj System.IntPtr
methodID System.IntPtr
args jvalue
리턴 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