Exemplo n.º 1
0
        public void AddType(Type type, IExtraProcesser processer, bool includeSubclass)
        {
            if (_collect_types.ContainsKey(type)) return;

            _collect_types.Add(type, processer);

            if (includeSubclass)
                _subclasses.Add(type);
        }
Exemplo n.º 2
0
        public void AddType(Type type, IExtraProcesser processer)
        {
            if (_collect_types.ContainsKey(type)) return;

            _collect_types.Add(type, processer);
        }