Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
KeyValuePairs.cs
Go to the documentation of this file.
1
using
System.Diagnostics
;
2
3
namespace
System.Collections
;
4
5
[DebuggerDisplay(
"{_value}"
,
Name
=
"[{_key}]"
)]
6
internal
sealed
class
KeyValuePairs
7
{
8
[DebuggerBrowsable(
DebuggerBrowsableState
.Never)]
9
private
readonly
object
_key
;
10
11
[DebuggerBrowsable(
DebuggerBrowsableState
.Never)]
12
private
readonly
object
_value
;
13
14
public
KeyValuePairs
(
object
key
,
object
value
)
15
{
16
_value
=
value
;
17
_key
=
key
;
18
}
19
}
System.Collections.KeyValuePairs.KeyValuePairs
KeyValuePairs(object key, object value)
Definition
KeyValuePairs.cs:14
System.Collections.KeyValuePairs._value
readonly object _value
Definition
KeyValuePairs.cs:12
System.Collections.KeyValuePairs._key
readonly object _key
Definition
KeyValuePairs.cs:9
System.Collections.KeyValuePairs
Definition
KeyValuePairs.cs:7
System.Collections
Definition
BlockingCollection.cs:8
System.Diagnostics.DebuggerBrowsableState
DebuggerBrowsableState
Definition
DebuggerBrowsableState.cs:4
System.Diagnostics
Definition
AggregationManager.cs:6
System.TypeNameKind.Name
@ Name
System.ExceptionArgument.value
@ value
System.ExceptionArgument.key
@ key
source
System.Collections.NonGeneric
System.Collections
KeyValuePairs.cs
Generated by
1.10.0