示例#1
0
        /// <summary>Initializes a new instance of the <see cref="T:System.Object"></see> class.</summary>
        public Generator(TypeMeta typeRef, TypeGeneratorRepository tgr)
        {
            Meta = typeRef;
            foreach (var np in Meta.NestedProperties)
            {
                tgr.EnsureGeneratorFor(np.PropertyType);
            }

            _tgr = tgr;
        }