GetBooleanField() public static method

public static GetBooleanField ( IntPtr obj, IntPtr fieldID ) : bool
obj System.IntPtr
fieldID System.IntPtr
return bool
Esempio n. 1
0
        public static bool GetBooleanField(IntPtr obj, IntPtr fieldID)
        {
            bool booleanField;

            try
            {
                booleanField = AndroidJNI.GetBooleanField(obj, fieldID);
            }
            finally
            {
                AndroidJNISafe.CheckException();
            }
            return(booleanField);
        }
 public static bool GetBooleanField(IntPtr obj, IntPtr fieldID)
 {
     try { return(AndroidJNI.GetBooleanField(obj, fieldID)); } finally { CheckException(); }
 }