Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Newtonsoft.Json/Utilities/CollectionWrapper.cs')
-rw-r--r--Src/Newtonsoft.Json/Utilities/CollectionWrapper.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/Src/Newtonsoft.Json/Utilities/CollectionWrapper.cs b/Src/Newtonsoft.Json/Utilities/CollectionWrapper.cs
index e667637..53bca72 100644
--- a/Src/Newtonsoft.Json/Utilities/CollectionWrapper.cs
+++ b/Src/Newtonsoft.Json/Utilities/CollectionWrapper.cs
@@ -27,9 +27,12 @@ using System;
using System.Collections;
using System.Collections.Generic;
using System.Threading;
-using Newtonsoft.Json.Utilities;
-using System.Linq;
using System.Globalization;
+#if NET20
+using Newtonsoft.Json.Utilities.LinqBridge;
+#else
+using System.Linq;
+#endif
namespace Newtonsoft.Json.Utilities
{