UnityEngine.AndroidJNI.CallShortMethod C# (CSharp) Method

CallShortMethod() public static method

public static CallShortMethod ( IntPtr obj, IntPtr methodID, jvalue args ) : short
obj System.IntPtr
methodID System.IntPtr
args jvalue
return short
		public static short CallShortMethod(IntPtr obj, IntPtr methodID, jvalue[] args){}
		public static byte CallByteMethod(IntPtr obj, IntPtr methodID, jvalue[] args){}

Usage Example

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