Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
EnumerableDebugView.cs
Go to the documentation of this file.
1
using
System.Collections.Generic
;
2
using
System.Diagnostics
;
3
using
System.Linq
;
4
5
namespace
System.Threading.Tasks.Dataflow.Internal
;
6
7
internal
sealed
class
EnumerableDebugView
<TKey, TValue>
8
{
9
private
readonly
IEnumerable<KeyValuePair<TKey, TValue>
>
_enumerable
;
10
11
[
DebuggerBrowsable
(
DebuggerBrowsableState
.RootHidden)]
12
public
KeyValuePair<TKey, TValue>
[] Items =>
_enumerable
.ToArray();
13
14
public
EnumerableDebugView
(
IEnumerable
<
KeyValuePair<TKey, TValue>
>
enumerable
)
15
{
16
_enumerable
=
enumerable
;
17
}
18
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Threading.Tasks.Dataflow.Internal.EnumerableDebugView.EnumerableDebugView
EnumerableDebugView(IEnumerable< KeyValuePair< TKey, TValue > > enumerable)
Definition
EnumerableDebugView.cs:14
System.Threading.Tasks.Dataflow.Internal.EnumerableDebugView._enumerable
readonly IEnumerable< KeyValuePair< TKey, TValue > > _enumerable
Definition
EnumerableDebugView.cs:9
System.Threading.Tasks.Dataflow.Internal.EnumerableDebugView
Definition
EnumerableDebugView.cs:8
System.Collections.Generic.IEnumerable
Definition
IEnumerable.cs:4
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.Diagnostics.DebuggerBrowsableState
DebuggerBrowsableState
Definition
DebuggerBrowsableState.cs:4
System.Diagnostics
Definition
AggregationManager.cs:6
System.Linq.ExceptionArgument.enumerable
@ enumerable
System.Linq
Definition
ImmutableArrayExtensions.cs:4
System.Threading.Tasks.Dataflow.Internal
Definition
BatchedJoinBlockTarget.cs:4
source
System.Threading.Tasks.Dataflow
System.Threading.Tasks.Dataflow.Internal
EnumerableDebugView.cs
Generated by
1.10.0