Results 1 comments of Wim Wouters

Updated to also remove clients from the List when they are no longer connected... ``` public virtual void SendMessageToClient(string msg) { foreach (var client in connectedTcpClients) { if (!client.Connected) {...