enumerate serial ports
Published: 8. January 2009 | Updated: 26. October 2011License: Microsoft Public License (MS-PL)
Categories: Windows » Hardware, Network
Tags: C# Hardware Network Windows
Import namespace
using System.IO.Ports;
Code
foreach (string portname in SerialPort.GetPortNames()) { Console.WriteLine(portname); }Console Output:
COM1
COM2
COM2
| Send us feedback about this snippet » |





