public void AddProperty(ModelCode pid, PropertyValue value)
        {
            Property property = new Property(pid, value);

            this.AddProperty(property);
        }
예제 #2
0
 public PropertyValue(PropertyValue toCopy)
 {
     this.longValues   = toCopy.longValues.GetRange(0, toCopy.longValues.Count);
     this.floatValues  = toCopy.floatValues.GetRange(0, toCopy.floatValues.Count);
     this.stringValues = toCopy.stringValues.GetRange(0, toCopy.stringValues.Count);
 }