Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DictionaryEntry.cs
Go to the documentation of this file.
1
using
System.ComponentModel
;
2
using
System.Runtime.CompilerServices
;
3
4
namespace
System.Collections
;
5
6
[
Serializable
]
7
[TypeForwardedFrom(
"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
)]
8
public
struct
DictionaryEntry
9
{
10
private
object
_key
;
11
12
private
object
_value
;
13
14
public
object
Key
15
{
16
get
17
{
18
return
_key
;
19
}
20
set
21
{
22
_key
=
value
;
23
}
24
}
25
26
public
object
?
Value
27
{
28
get
29
{
30
return
_value
;
31
}
32
set
33
{
34
_value
=
value
;
35
}
36
}
37
38
public
DictionaryEntry
(
object
key
,
object
?
value
)
39
{
40
_key
=
key
;
41
_value
=
value
;
42
}
43
44
[EditorBrowsable(
EditorBrowsableState
.Never)]
45
public
void
Deconstruct
(out
object
key
, out
object
?
value
)
46
{
47
key
=
Key
;
48
value
=
Value
;
49
}
50
}
System.Collections
Definition
BlockingCollection.cs:8
System.ComponentModel.EditorBrowsableState
EditorBrowsableState
Definition
EditorBrowsableState.cs:4
System.ComponentModel
Definition
ColumnAttribute.cs:3
System.Data.IsolationLevel.Serializable
@ Serializable
System.Runtime.CompilerServices
Definition
NullablePublicOnlyAttribute.cs:3
System.ExceptionArgument.value
@ value
System.ExceptionArgument.key
@ key
System.Collections.DictionaryEntry.Key
object Key
Definition
DictionaryEntry.cs:15
System.Collections.DictionaryEntry.DictionaryEntry
DictionaryEntry(object key, object? value)
Definition
DictionaryEntry.cs:38
System.Collections.DictionaryEntry.Deconstruct
void Deconstruct(out object key, out object? value)
Definition
DictionaryEntry.cs:45
System.Collections.DictionaryEntry.Value
object? Value
Definition
DictionaryEntry.cs:27
System.Collections.DictionaryEntry._key
object _key
Definition
DictionaryEntry.cs:10
System.Collections.DictionaryEntry._value
object _value
Definition
DictionaryEntry.cs:12
System.Collections.DictionaryEntry
Definition
DictionaryEntry.cs:9
source
System.Private.CoreLib
System.Collections
DictionaryEntry.cs
Generated by
1.10.0