Example #1
0
        public static sbyte CallSByteMethod(IntPtr obj, IntPtr methodID, jvalue[] args)
        {
            sbyte result;

            try
            {
                result = AndroidJNI.CallSByteMethod(obj, methodID, args);
            }
            finally
            {
                AndroidJNISafe.CheckException();
            }
            return(result);
        }
 public static byte CallByteMethod(IntPtr obj, IntPtr methodID, jvalue[] args)
 {
     return((byte)AndroidJNI.CallSByteMethod(obj, methodID, args));
 }
Example #3
0
 public static SByte CallSByteMethod(IntPtr obj, IntPtr methodID, Span <jvalue> args)
 {
     try { return(AndroidJNI.CallSByteMethod(obj, methodID, args)); } finally { CheckException(); }
 }