mscorlib(4.0.0.0) API with additions
LazyThreadSafetyMode.cs
1 namespace System.Threading
2 {
4  [__DynamicallyInvokable]
5  public enum LazyThreadSafetyMode
6  {
8  [__DynamicallyInvokable]
9  None,
11  [__DynamicallyInvokable]
14  [__DynamicallyInvokable]
16  }
17 }
When multiple threads try to initialize a T:System.Lazy`1 instance simultaneously,...
Locks are used to ensure that only a single thread can initialize a T:System.Lazy`1 instance in a thr...
LazyThreadSafetyMode
Specifies how a T:System.Lazy`1 instance synchronizes access among multiple threads.