SharpCAT/SharpCATConsole/Program.cs

26 lines
567 B
C#
Raw Normal View History

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