SympatheticHardwareControl.Controller.updateStateRecord C# (CSharp) 메소드

updateStateRecord() 개인적인 메소드

private updateStateRecord ( hardwareState changes ) : void
changes hardwareState
리턴 void
        private void updateStateRecord(hardwareState changes)
        {
            foreach (KeyValuePair<string, double> pairs in changes.analogs)
            {
                stateRecord.analogs[pairs.Key] = changes.analogs[pairs.Key];
            }
            foreach (KeyValuePair<string, bool> pairs in changes.digitals)
            {
                stateRecord.digitals[pairs.Key] = changes.digitals[pairs.Key];
            }
        }