我在我的電腦上安裝了設備(例如讀卡器)。我運行了這段代碼,但沒有填充ComboBox
。查看已安裝設備的端口地址和屬性
代碼:
using System.Management;
using System.IO.Ports;
foreach (string portname in SerialPort.GetPortNames())
{
comboBox1.Items.Add(portname);
}
因爲這沒有工作,我怎麼能看到安裝在計算機上的設備的端口地址和屬性?