SharpCAT/SharpCATConsole/Program.cs

26 lines
567 B
C#
Raw Normal View History

2019-03-08 20:04:43 +01:00
using SharpCATLib;
using System;
namespace SharpCATConsole
{
2019-03-08 20:04:43 +01:00
internal class Program
{
2019-03-08 20:04:43 +01:00
private static void Main(string[] args)
{
SharpCAT sharpCAT = new SharpCAT();
2019-03-08 20:04:43 +01:00
Console.WriteLine("Ports found: ");
foreach (var port in sharpCAT.PortNames)
{
Console.WriteLine(port);
}
2019-03-08 20:04:43 +01:00
Console.ReadKey();
}
2019-03-08 19:23:02 +01:00
private static string SharpCAT_PortsSelected(string[] portnames)
{
throw new NotImplementedException();
}
}
2019-03-08 20:04:43 +01:00
}