SharpCAT/SharpCATConsole/Program.cs
2019-03-08 12:23:02 -06:00

31 lines
677 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SharpCATLib;
namespace SharpCATConsole
{
class Program
{
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();
}
}
}