UnityEngine.AndroidJNI.CallStaticDoubleMethod C# (CSharp) Method

CallStaticDoubleMethod() public static method

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