disons que j'ai le code suivant:
ConcurrentDictionary<long, long> myDict= new ConcurrentDictionary<long, long>();
Normalement, chaque accès par clé est threadsafe, mais la requête linq suivante est-elle threadsafe? Je n'ai rien trouvé dans les documents: http://msdn.microsoft.com/en-us/library/dd287226.aspx
if myDict.Values.Any(x => !x.HasPaid))
{
return false
}