public GenericInterPropertyWrapper(InterProperty property, IntermediateBuilder context, InterGenericType type)
            : base(property, context)
        {
            _type = type;

            _propertyType = _type.InstantiateGenericType(property.Type);
        }
 public InterPropertyWrapper(InterProperty property, IntermediateBuilder context)
 {
     _property = property;
     _context  = context;
 }
Exemple #3
0
 public void AddProperty(InterProperty property)
 => Properties = Properties.Add(property);