SharpArch.Domain.Reflection.TypePropertyDescriptorCache.Find C# (CSharp) Метод

Find() приватный Метод

private Find ( Type type ) : TypePropertyDescriptor
type System.Type
Результат TypePropertyDescriptor
        public TypePropertyDescriptor Find(Type type)
        {
            TypePropertyDescriptor result;
            this.cache.TryGetValue(type, out result);
            return result;
        }
TypePropertyDescriptorCache