-
Notifications
You must be signed in to change notification settings - Fork 36
Overload_CodeJam_Lazy_Create
andrewvk edited this page Jun 23, 2016
·
3 revisions
Name | Description | |
---|---|---|
![]() ![]() |
Create(T)() | Initializes a new instance of the Lazy(T) class. When lazy initialization occurs, the default constructor of the target type is used. |
![]() ![]() |
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. |
![]() ![]() |
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. |
![]() ![]() |
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. |
![]() ![]() |
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. |
![]() ![]() |
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. |