summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-02-06 07:20:17 -0800
committerJan Kotas <jkotas@microsoft.com>2017-02-06 07:40:24 -0800
commitf705205bdeef23187011a65376a3c7dcb448f359 (patch)
treed323df9c742f2b70a22fdb771a53e67ba804184d /src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
parentec23bace223bf449a08bde2f1ec3e2c0135ce408 (diff)
downloadcoreclr-f705205bdeef23187011a65376a3c7dcb448f359.tar.gz
coreclr-f705205bdeef23187011a65376a3c7dcb448f359.tar.bz2
coreclr-f705205bdeef23187011a65376a3c7dcb448f359.zip
Delete ComVisible attributes
Diffstat (limited to 'src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs')
-rw-r--r--src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs b/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
index f7b6883979..b8f449c2c9 100644
--- a/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
+++ b/src/mscorlib/src/System/Collections/Concurrent/ConcurrentDictionary.cs
@@ -37,7 +37,6 @@ namespace System.Collections.Concurrent
/// All public and protected members of <see cref="ConcurrentDictionary{TKey,TValue}"/> are thread-safe and may be used
/// concurrently from multiple threads.
/// </remarks>
- [ComVisible(false)]
[DebuggerTypeProxy(typeof(Mscorlib_DictionaryDebugView<,>))]
[DebuggerDisplay("Count = {Count}")]
public class ConcurrentDictionary<TKey, TValue> : IDictionary<TKey, TValue>, IDictionary, IReadOnlyDictionary<TKey, TValue>