Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SystemThreading_ThreadLocalDebugView.cs
Go to the documentation of this file.
1
using
System.Collections.Generic
;
2
3
namespace
System.Threading
;
4
5
internal
sealed
class
SystemThreading_ThreadLocalDebugView
<T>
6
{
7
private
readonly
ThreadLocal<T>
_tlocal
;
8
9
public
bool
IsValueCreated
=>
_tlocal
.IsValueCreated;
10
11
public
T
Value
=>
_tlocal
.ValueForDebugDisplay;
12
13
public
List<T>
Values
=>
_tlocal
.ValuesForDebugDisplay;
14
15
public
SystemThreading_ThreadLocalDebugView
(
ThreadLocal<T>
tlocal
)
16
{
17
_tlocal
=
tlocal
;
18
}
19
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Threading.SystemThreading_ThreadLocalDebugView.Values
List< T > Values
Definition
SystemThreading_ThreadLocalDebugView.cs:13
System.Threading.SystemThreading_ThreadLocalDebugView.IsValueCreated
bool IsValueCreated
Definition
SystemThreading_ThreadLocalDebugView.cs:9
System.Threading.SystemThreading_ThreadLocalDebugView._tlocal
readonly ThreadLocal< T > _tlocal
Definition
SystemThreading_ThreadLocalDebugView.cs:7
System.Threading.SystemThreading_ThreadLocalDebugView.Value
T Value
Definition
SystemThreading_ThreadLocalDebugView.cs:11
System.Threading.SystemThreading_ThreadLocalDebugView.SystemThreading_ThreadLocalDebugView
SystemThreading_ThreadLocalDebugView(ThreadLocal< T > tlocal)
Definition
SystemThreading_ThreadLocalDebugView.cs:15
System.Threading.SystemThreading_ThreadLocalDebugView
Definition
SystemThreading_ThreadLocalDebugView.cs:6
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.Threading
Definition
TaskToApm.cs:3
source
System.Private.CoreLib
System.Threading
SystemThreading_ThreadLocalDebugView.cs
Generated by
1.10.0