Update_Except_States() public method

public Update_Except_States ( Port otherPort ) : void
otherPort Port
return void
示例#1
0
文件: Port.cs 项目: sm6uax/plegma
        public Port DeepClone()
        {
            var newPort = new Port(PortKey, Type, ioDirection);

            newPort.Update_Except_States(this);
            newPort.State  = State;
            newPort.RevNum = RevNum;
            return(newPort);
        }
示例#2
0
文件: Port.cs 项目: yodiwo/plegma
 public Port DeepClone()
 {
     var newPort = new Port(PortKey, Type, ioDirection);
     newPort.Update_Except_States(this);
     newPort.State = State;
     newPort.RevNum = RevNum;
     return newPort;
 }