Page 1 of 1
Get list of serial ports
Posted: Tue Jul 21, 2009 11:36 pm
by kumara
How to get list of serial ports in c#?
Re: Get list of serial ports
Posted: Mon Aug 03, 2009 11:05 am
by chandika
using System.IO.Ports;
//read ports to array
string[] sports = SerialPort.GetPortNames();
for (int i = 0; i <= sports.GetUpperBound(0); i++)
{
Console.WriteLine(sports);
}