namespace CommonConsole { using Common.Hardware.Interfaces.Ports.SIRT; using System; public static class Program { public static void Main() { var port = new SIRTPort("COM6"); port.Logging += Console.WriteLine; port.Open(); Console.ReadKey(); port.Close(); } } }