Update_Except_States() public method

public Update_Except_States ( Port otherPort ) : void
otherPort Port
return void
Esempio n. 1
0
        public Port DeepClone()
        {
            var newPort = new Port(PortKey, Type, ioDirection);

            newPort.Update_Except_States(this);
            newPort.State  = State;
            newPort.RevNum = RevNum;
            return(newPort);
        }
Esempio n. 2
0
 public Port DeepClone()
 {
     var newPort = new Port(PortKey, Type, ioDirection);
     newPort.Update_Except_States(this);
     newPort.State = State;
     newPort.RevNum = RevNum;
     return newPort;
 }