Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DebugEnumeratorDebugView.cs
Go to the documentation of this file.
1
using
System.Collections.Generic
;
2
using
System.Diagnostics
;
3
4
namespace
System.Threading.Channels
;
5
6
internal
sealed
class
DebugEnumeratorDebugView
<T>
7
{
8
[
DebuggerBrowsable
(
DebuggerBrowsableState
.RootHidden)]
9
public
T[] Items {
get
; }
10
11
public
DebugEnumeratorDebugView
(
IDebugEnumerable<T>
enumerable)
12
{
13
List<T>
list
=
new
List<T>
();
14
foreach
(T
item
in
enumerable)
15
{
16
list
.Add(
item
);
17
}
18
Items =
list
.ToArray();
19
}
20
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Threading.Channels.DebugEnumeratorDebugView.DebugEnumeratorDebugView
DebugEnumeratorDebugView(IDebugEnumerable< T > enumerable)
Definition
DebugEnumeratorDebugView.cs:11
System.Threading.Channels.DebugEnumeratorDebugView
Definition
DebugEnumeratorDebugView.cs:7
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.Diagnostics.DebuggerBrowsableState
DebuggerBrowsableState
Definition
DebuggerBrowsableState.cs:4
System.Diagnostics
Definition
AggregationManager.cs:6
System.Threading.Channels
Definition
AsyncOperation.cs:6
System.ExceptionArgument.list
@ list
System.ExceptionArgument.item
@ item
source
System.Threading.Channels
System.Threading.Channels
DebugEnumeratorDebugView.cs
Generated by
1.10.0