Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LazyDebugView.cs
Go to the documentation of this file.
3
4namespace System;
5
6internal sealed class LazyDebugView<[DynamicallyAccessedMembers(DynamicallyAccessedMemberTypes.PublicParameterlessConstructor)] T>
7{
8 private readonly Lazy<T> _lazy;
9
11
13
15
17
19 {
20 _lazy = lazy;
21 }
22}
readonly Lazy< T > _lazy
LazyDebugView(Lazy< T > lazy)
LazyThreadSafetyMode? Mode
Definition Lazy.cs:29
bool IsValueFaulted
Definition Lazy.cs:31
bool IsValueCreated
Definition Lazy.cs:33
T? ValueForDebugDisplay
Definition Lazy.cs:18