System.Configuration.GenericEnumConverter.GenericEnumConverter C# (CSharp) Метод

GenericEnumConverter() публичный Метод

public GenericEnumConverter ( Type typeEnum ) : System
typeEnum Type
Результат System
        public GenericEnumConverter(Type typeEnum) {
            if (typeEnum == null) {
                throw new ArgumentNullException("typeEnum");
            }

            _enumType = typeEnum;
        }