EasyModbusTCP.NET
EasyModbusTCP.NET copied to clipboard
For .NET Core, TcpClient doesn't support the .Connect() API
TcpClient only supports ConnectAsync() in .NET Core. This requires that our .Connect() wrapper wait for the .ConnectAsync() call to complete before calling .GetStream(), so we will make the .Connect() method awaitable.