public override BaseElement Clone() { FieldExtension clone = new FieldExtension(); clone.setValues(this); return(clone); }
public void setValues(FieldExtension otherExtension) { fieldName = otherExtension.FieldName; stringValue = otherExtension.StringValue; expression = otherExtension.Expression; }