Lazy<T> Constructor
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Initializes a new instance of the Lazy<T> class. When lazy initialization occurs, the default constructor of the target type is used.
Assembly: mscorlib (in mscorlib.dll)
An instance that is created with this constructor may be used concurrently from multiple threads.
The thread safety mode of a Lazy<T> instance that is created by using this constructor is LazyThreadSafetyMode.ExecutionAndPublication. The thread safety mode describes the behavior when multiple threads try to initialize the Lazy<T> instance.
A Lazy<T> instance that is created with this constructor does not cache exceptions. For more information, see the System.Threading.LazyThreadSafetyMode enumeration.