Formatting and cleanup.

This commit is contained in:
Erick Kinnee 2019-03-08 13:04:43 -06:00
parent a3ae0cc06c
commit 57744dfb6a
29 changed files with 139 additions and 220 deletions

View file

@ -1,24 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SharpCATLib;
using SharpCATLib;
using System;
namespace SharpCATConsole
{
class Program
internal class Program
{
static void Main(string[] args)
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();
}
@ -27,4 +23,4 @@ namespace SharpCATConsole
throw new NotImplementedException();
}
}
}
}