Example #1
0
        public static StructBuilderPartialType <T, PrevT> GetStruct(StructBuilderProperty <PrevT> p, TypeStorage storage = null)
        {
            if (storage == null)
            {
                storage = TypeStorage.Instance;
            }

            return(new StructBuilderPartialType <T, PrevT>(storage, p));
        }
Example #2
0
 protected StructBuilderPartialType(TypeStorage storage, StructBuilderProperty <PrevT> p) : base(storage)
 {
     prevProp = p;
 }