1. 程式人生 > >c#獲取本機的串列埠列表

c#獲取本機的串列埠列表

1.定義一個字串陣列,並將獲取到的電腦上串列埠名字賦值給它。
string[] ArryPort = SerialPort.GetPortNames();
2.將一個組合框的內容清除
cmbPort.Items.Clear();
3。將陣列中的值新增到組合框中

 for (int i = 0; i < ArryPort.Length; i++)
  {
       cmbPort.Items.Add(ArryPort[i]);
   }