Exemplo n.º 1
0
        public override BaseElement Clone()
        {
            IOParameter clone = new IOParameter();

            clone.SetValues(this);
            return(clone);
        }
Exemplo n.º 2
0
 public void SetValues(IOParameter otherElement)
 {
     base.SetValues(otherElement);
     source           = otherElement.Source;
     sourceExpression = otherElement.SourceExpression;
     target           = otherElement.Target;
     targetExpression = otherElement.TargetExpression;
 }