Thomas Streiber - 2015-06-15

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