mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2025-12-06 03:31:59 +01:00
26 lines
567 B
C#
26 lines
567 B
C#
using SharpCATLib;
|
|
using System;
|
|
|
|
namespace SharpCATConsole
|
|
{
|
|
internal class Program
|
|
{
|
|
private static void Main(string[] args)
|
|
{
|
|
SharpCAT sharpCAT = new SharpCAT();
|
|
|
|
Console.WriteLine("Ports found: ");
|
|
foreach (var port in sharpCAT.PortNames)
|
|
{
|
|
Console.WriteLine(port);
|
|
}
|
|
|
|
Console.ReadKey();
|
|
}
|
|
|
|
private static string SharpCAT_PortsSelected(string[] portnames)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |