Tinkering with events.

This commit is contained in:
Erick Kinnee 2019-03-08 12:23:02 -06:00
parent 6a8ecd3732
commit a3ae0cc06c
8 changed files with 56 additions and 15 deletions

View file

@ -12,6 +12,7 @@ namespace SharpCATConsole
static void Main(string[] args)
{
SharpCAT sharpCAT = new SharpCAT();
Console.WriteLine("Ports found: ");
foreach (var port in sharpCAT.PortNames)
{
@ -20,5 +21,10 @@ namespace SharpCATConsole
Console.ReadKey();
}
private static string SharpCAT_PortsSelected(string[] portnames)
{
throw new NotImplementedException();
}
}
}