dotnet-core/release-notes/5.0/api-diff/netstandard2.1/5.0_System.Collections.Concurrent.md

11 lines
453 B
Markdown
Raw Normal View History

# System.Collections.Concurrent
``` diff
namespace System.Collections.Concurrent {
public class ConcurrentDictionary<TKey, TValue> : ICollection, ICollection<KeyValuePair<TKey, TValue>>, IDictionary, IDictionary<TKey, TValue>, IEnumerable, IEnumerable<KeyValuePair<TKey, TValue>>, IReadOnlyCollection<KeyValuePair<TKey, TValue>>, IReadOnlyDictionary<TKey, TValue> {
+ public bool TryRemove(KeyValuePair<TKey, TValue> item);
}
}
```