We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58a1148 commit d7379f5Copy full SHA for d7379f5
Main/src/Lazy.cs
@@ -1,6 +1,4 @@
1
-// Same functionality already exists in TPL for 3.5 used in FW 3.5 targeting, so we exclude it from FW3.5 version
2
-#if !FW35
3
-using System;
+using System;
4
using System.Threading;
5
6
using JetBrains.Annotations;
@@ -80,5 +78,4 @@ public static class Lazy
80
78
/// <returns>New <see cref="Lazy{T}"/> instance.</returns>
81
79
public static Lazy<T> Create<T>(Func<T> valueFactory, LazyThreadSafetyMode mode) => new Lazy<T>(valueFactory, mode);
82
}
83
-}
84
-#endif
+}
0 commit comments