Exemplo n.º 1
0
 public abstract Value ConvertTo(AttributeType to);
Exemplo n.º 2
0
 public override bool IsCompatible(AttributeType type) =>
 base.IsCompatible(type) || PrimaryType == type.PrimaryType;
Exemplo n.º 3
0
 public ValueSet(AttributeType elementType) : base(new HashSet <Value>())
 {
     _type = new AttributeTypeCollection(PrimaryType.Set, elementType);
 }