Closed aguluman closed 1 month ago
In here, https://csharp-networking.com/chapter03/#session-timeouts
The remove keyword raised a problem in the IDE. The issue is caused by the use of the Remove method on [ConcurrentDictionary], which does not exist. Instead, you should use the TryRemove method.
The issue is caused by the use of the Remove method on [ConcurrentDictionary], which does not exist. Instead, you should use the TryRemove method.
Thanks! Fixed and acknowledged.
In here, https://csharp-networking.com/chapter03/#session-timeouts
The remove keyword raised a problem in the IDE.
The issue is caused by the use of the Remove method on [ConcurrentDictionary], which does not exist. Instead, you should use the TryRemove method.