Aegis.IO.SerialPortWatcher.SerialPortWatcher C# (CSharp) 메소드

SerialPortWatcher() 공개 메소드

public SerialPortWatcher ( ) : System
리턴 System
        public SerialPortWatcher()
        {
            _pluggedPorts = new List<Tuple<SerialPort, object>>();
            _unpluggedPorts = new List<Tuple<SerialPort, object>>();

            _timer = new IntervalTimer(500, () => { Check(); });
            _timer.Start();
        }