Exemplo n.º 1
0
        public Dictionary <string, CrateField> Get(Type t)
        {
            var ret = (Dictionary <string, CrateField>)Get(t.FullName);

            if (ret == null)
            {
                ret = AttributeHelpers.GetTableFields(t);
                Set(t.FullName, ret);
            }
            return(ret);
        }