1
0
mirror of synced 2025-12-21 02:41:55 -05:00
Files
core/release-notes/5.0/api-diff/netstandard2.1/5.0_System.Collections.Concurrent.md
Rich Lander 8c8e5836c3 Fix linter errors in repo (#9689)
* Fix linter errors

* Update links
2025-01-13 21:40:52 -08:00

452 B

System.Collections.Concurrent

 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);
     }
 }