C# System.IO.Ports 抛出 System.IO.Ports 目前仅在 Windows 上受支持,但我目前正在使用 windows

问题描述 投票:0回答:1

我正在尝试通过串口与 Arduino 进行通信。 表格使用:

using System.IO.Ports;

我的代码在这里中断:

SerialPort mySerialPort = new SerialPort("COM3");

例外情况是:

System.PlatformNotSupportedException:“System.IO.Ports 目前仅在 Windows 上受支持。

我目前使用的是 Windows 11。

我尝试重新安装

system.io.ports
,但没有成功

c# .net serial-port
1个回答
0
投票

我在 System.IO 版本 9.0.0 上遇到了这个问题,我刚刚降级到 8.0.0 并且工作正常。

© www.soinside.com 2019 - 2024. All rights reserved.