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

CallStaticLongMethod() 공개 정적인 메소드

public static CallStaticLongMethod ( IntPtr clazz, IntPtr methodID, jvalue args ) : long
clazz System.IntPtr
methodID System.IntPtr
args jvalue
리턴 long
		public static long CallStaticLongMethod(IntPtr clazz, IntPtr methodID, jvalue[] args){}
		public static void CallStaticVoidMethod(IntPtr clazz, IntPtr methodID, jvalue[] args){}

Usage Example

예제 #1
0
 public static long CallStaticLongMethod(IntPtr clazz, IntPtr methodID, jvalue[] args)
 {
     try
     {
         return(AndroidJNI.CallStaticLongMethod(clazz, methodID, args));
     }
     finally
     {
         AndroidJNISafe.CheckException();
     }
 }
All Usage Examples Of UnityEngine.AndroidJNI::CallStaticLongMethod
AndroidJNI