UnityEngine.AndroidJNI.CallStaticLongMethod C# (CSharp) Method

CallStaticLongMethod() public static method

public static CallStaticLongMethod ( IntPtr clazz, IntPtr methodID, jvalue args ) : long
clazz System.IntPtr
methodID System.IntPtr
args jvalue
return 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