Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
Marker.cs
Go to the documentation of this file.
1
using
System.Diagnostics
;
2
3
namespace
System.Collections.Generic
;
4
5
[DebuggerDisplay(
"{DebuggerDisplay,nq}"
)]
6
internal
readonly
struct
Marker
7
{
8
public
int
Count
{
get
; }
9
10
public
int
Index
{
get
; }
11
12
private
string
DebuggerDisplay
=>
$
"{"
Index
"}: {Index}, {"
Count
"}: {Count}"
;
13
14
public
Marker
(
int
count
,
int
index
)
15
{
16
Count
=
count
;
17
Index
=
index
;
18
}
19
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.Collections.Generic
Definition
IHashKeyCollection.cs:1
System.Diagnostics
Definition
AggregationManager.cs:6
System.ExceptionArgument.index
@ index
System.ExceptionArgument.count
@ count
System.Collections.Generic.Marker.DebuggerDisplay
string DebuggerDisplay
Definition
Marker.cs:12
System.Collections.Generic.Marker.Marker
Marker(int count, int index)
Definition
Marker.cs:14
System.Collections.Generic.Marker.Count
int Count
Definition
Marker.cs:8
System.Collections.Generic.Marker
Definition
Marker.cs:7
System.Index
Definition
Index.cs:7
source
System.Linq
System.Collections.Generic
Marker.cs
Generated by
1.10.0