I have a dictionary which isConcurrentDictionary<uint, Mensaje> mensajesEnviados = new ConcurrentDictionary<uint, Mensaje>();
I want to retrieve all the objects Mensaje whose key value is less than a certain value, to iterate on them. How should I do that?
Thanks in advance!