|
|
@@ -1,4 +1,4 @@
|
|
|
-// ConcurrentSkipList.cs
|
|
|
+// ConcurrentDictionary.cs
|
|
|
//
|
|
|
// Copyright (c) 2009 Jérémie "Garuma" Laval
|
|
|
//
|
|
|
@@ -22,14 +22,14 @@
|
|
|
//
|
|
|
//
|
|
|
|
|
|
+#if NET_4_0 || BOOTSTRAP_NET_4_0
|
|
|
+
|
|
|
using System;
|
|
|
using System.Threading;
|
|
|
using System.Collections;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
-#if NET_4_0 || BOOTSTRAP_NET_4_0
|
|
|
-
|
|
|
namespace System.Collections.Concurrent
|
|
|
{
|
|
|
public class ConcurrentDictionary<TKey, TValue> : IDictionary<TKey, TValue>,
|