FFACETools.FFACE.IsSet C# (CSharp) Method

IsSet() static private method

static private IsSet ( InventoryType value, InventoryType bit ) : bool
value InventoryType
bit InventoryType
return bool
        internal static bool IsSet(InventoryType value, InventoryType bit)
        {
            if (value == bit)
                return true;

            return (((UInt32)value & (UInt32)bit) != 0);
        }

Same methods

FFACE::IsSet ( LineSettings value, LineSettings bit ) : bool
FFACE::IsSet ( UInt32 value, UInt32 bit ) : bool
FFACE