SharpArch.Domain.Reflection.TypePropertyDescriptorCache.Find C# (CSharp) Method

Find() private method

private Find ( Type type ) : TypePropertyDescriptor
type System.Type
return TypePropertyDescriptor
        public TypePropertyDescriptor Find(Type type)
        {
            TypePropertyDescriptor result;
            this.cache.TryGetValue(type, out result);
            return result;
        }
TypePropertyDescriptorCache