Hello Community,
to avoid getting exceptions during debugging my application I changed the original lines 102-106
foreach (Client clientLoop in tcpClientLastRequestList) { if (client.Equals(clientLoop)) objetExists = true; }
of ModbusServer.cs to the following:
if (tcpClientLastRequestList.Find(x=>x==client) !=null) objetExists = true;
Have a look an give a little comment if you like.
Greets,
Thomas
Anonymous
You seem to have CSS turned off. Please don't fill out this field.
Hello Community,
to avoid getting exceptions during debugging my application I changed the original lines 102-106
of ModbusServer.cs to the following:
Have a look an give a little comment if you like.
Greets,
Thomas