Lazy(T) Constructor (Boolean)
From Task Parallel System.Threading
|
|
| .NET Framework Class Library |
| Lazy<(Of <(T>)>) Constructor (Boolean) |
| Lazy<(Of <(T>)>) Class See Also Send Feedback |
Initializes a new instance of the Lazy<(Of <(T>)>)
class that uses T's default constructor and a specified thread-safety mode.
Namespace:
System
Assembly:
System.Threading (in System.Threading.dll)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub New ( _ isThreadSafe As Boolean _ ) |
| C# |
|---|
public Lazy( bool isThreadSafe ) |
Parameters
- isThreadSafe
- Type: System..::.Boolean
true if this instance should be usable by multiple threads concurrently; false if the instance will only be used by one thread at a time.