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

CallStaticDoubleMethod() 공개 정적인 메소드

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

Usage Example

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