summaryrefslogtreecommitdiff
path: root/mcs/class/corlib/System.Collections.Concurrent
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System.Collections.Concurrent')
-rw-r--r--mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs
index bb8e99f704..a52ced14f8 100644
--- a/mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs
+++ b/mcs/class/corlib/System.Collections.Concurrent/ConcurrentDictionary.cs
@@ -35,6 +35,7 @@ namespace System.Collections.Concurrent
{
[DebuggerDisplay ("Count={Count}")]
[DebuggerTypeProxy (typeof (CollectionDebuggerView<,>))]
+ [Serializable]
public class ConcurrentDictionary<TKey, TValue> : IDictionary<TKey, TValue>,
ICollection<KeyValuePair<TKey, TValue>>, IEnumerable<KeyValuePair<TKey, TValue>>,
IDictionary, ICollection, IEnumerable