UnityEngine.AndroidJNI.CallDoubleMethod C# (CSharp) Method

CallDoubleMethod() public static method

public static CallDoubleMethod ( IntPtr obj, IntPtr methodID, jvalue args ) : double
obj System.IntPtr
methodID System.IntPtr
args jvalue
return double
		public static double CallDoubleMethod(IntPtr obj, IntPtr methodID, jvalue[] args){}
		public static long CallLongMethod(IntPtr obj, IntPtr methodID, jvalue[] args){}

Usage Example

コード例 #1
0
 public static double CallDoubleMethod(IntPtr obj, IntPtr methodID, jvalue[] args)
 {
     try
     {
         return(AndroidJNI.CallDoubleMethod(obj, methodID, args));
     }
     finally
     {
         AndroidJNISafe.CheckException();
     }
 }
All Usage Examples Of UnityEngine.AndroidJNI::CallDoubleMethod
AndroidJNI