Search found 1 match

by chandika
Mon Aug 03, 2009 11:05 am
Forum: .NET Programming
Topic: Get list of serial ports
Replies: 1
Views: 2896

Re: Get list of serial ports

using System.IO.Ports;

//read ports to array
string[] sports = SerialPort.GetPortNames();

for (int i = 0; i <= sports.GetUpperBound(0); i++)
{
Console.WriteLine(sports);
}

Go to advanced search