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

EnumFieldHandler() public method

public EnumFieldHandler ( Type enumType ) : System
enumType System.Type
return System
        public EnumFieldHandler(Type enumType)
        {
            if (!IsCompatibleWith(enumType)) throw new ArgumentException("enumType");
            _enumType = enumType;
            var ec = new EnumConfiguration(enumType);
            _signed = ec.Signed;
            _configuration = ec.ToConfiguration();
        }

Same methods

EnumFieldHandler::EnumFieldHandler ( byte configuration ) : System