Skip to content

Overload_CodeJam_Lazy_Create

andrewvk edited this page Jun 23, 2016 · 3 revisions

Lazy.Create Method

[This is preliminary documentation and is subject to change.]

Overload List

 

Name Description
Public methodStatic member Create(T)() Initializes a new instance of the Lazy(T) class. When lazy initialization occurs, the default constructor of the target type is used.
Public methodStatic member Create(T)(Boolean) Initializes a new instance of the Lazy(T) class. When lazy initialization occurs, the default constructor of the target type is used.
Public methodStatic member Create(T)(Func(T)) Initializes a new instance of the Lazy(T) class. When lazy initialization occurs, the default constructor of the target type is used.
Public methodStatic member Create(T)(LazyThreadSafetyMode) Initializes a new instance of the Lazy(T) class. When lazy initialization occurs, the default constructor of the target type is used.
Public methodStatic member Create(T)(Func(T), Boolean) Initializes a new instance of the Lazy(T) class. When lazy initialization occurs, the default constructor of the target type is used.
Public methodStatic member Create(T)(Func(T), LazyThreadSafetyMode) Initializes a new instance of the Lazy(T) class. When lazy initialization occurs, the default constructor of the target type is used.
  Back to Top

See Also

Reference

Lazy Class
CodeJam Namespace

Clone this wiki locally