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/EnumUtils.cs')
-rw-r--r--Src/Newtonsoft.Json/Utilities/EnumUtils.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Src/Newtonsoft.Json/Utilities/EnumUtils.cs b/Src/Newtonsoft.Json/Utilities/EnumUtils.cs
index 57e034f..d5e82e2 100644
--- a/Src/Newtonsoft.Json/Utilities/EnumUtils.cs
+++ b/Src/Newtonsoft.Json/Utilities/EnumUtils.cs
@@ -26,7 +26,11 @@
using System;
using System.Collections.Generic;
using System.Globalization;
+#if NET20
+using Newtonsoft.Json.Utilities.LinqBridge;
+#else
using System.Linq;
+#endif
using System.Reflection;
namespace Newtonsoft.Json.Utilities