Bastian

Results 2 comments of Bastian

Its the one between the two table lines 1 & 2 - the separator gets an whitespace after the `+` sign `+ --....` and the dashes after the with space...

adding the following fixed my issue: add handler property: ``` public event EventHandler ConnectionInterrupted; ``` add the handler: ``` private void NotifyConnectionInterrupted(TcpClient client, byte[] msg) { ConnectionInterrupted?.Invoke(this, EventArgs.Empty); } ```...