Update_Except_States() 공개 메소드

public Update_Except_States ( Port otherPort ) : void
otherPort Port
리턴 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;
 }