Skip to content

Instantly share code, notes, and snippets.

@MKo-xx
Created December 25, 2010 09:40
Show Gist options
  • Save MKo-xx/754793 to your computer and use it in GitHub Desktop.
Save MKo-xx/754793 to your computer and use it in GitHub Desktop.
get port list
using System.IO.Ports;
...
private void refresh_button_Click(object sender, EventArgs e)
{
portlist_comboBox.Items.Clear();
foreach (string s in SerialPort.GetPortNames())
{
portlist_comboBox.Items.Add(s);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment