BTDB.FieldHandler.EnumFieldHandler.IsFlagsEnum C# (CSharp) Method

IsFlagsEnum() static private method

static private IsFlagsEnum ( Type type ) : bool
type System.Type
return bool
        static bool IsFlagsEnum(Type type)
        {
            return type.GetCustomAttributes(typeof(FlagsAttribute), false).Length != 0;
        }