我的步骤: 1.使用 System.IO.Ports;使用 system.Threading;
2.SerialPort mySerialPort=new SerialPort("Com1",9200,Parity.None,8,StopBits.One); 3.mySerialPort.Open(); //异常捕获:System.IO.IOException 已被抛出:没有这样的文件或目录。
4.myThread=new Thread(new ParameterizedThreadStart(ReadPortThread)); 5.myThread.Start(mySerialPort);
6.ReadPortThread(SerialPort serialPort() //从串口接收数据。
希望您对问题提出一些建议。