GetValue() public static method

public static GetValue ( IntPtr boolean ) : bool
boolean System.IntPtr
return bool
Example #1
0
        public static bool GetBooleanValue(IntPtr theDict, IntPtr key)
        {
            var value = GetValue(theDict, key);

            if (value == IntPtr.Zero)
            {
                return(false);
            }
            return(CFBoolean.GetValue(value));
        }