Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Current
object System.Collections.Specialized.OrderedDictionary.OrderedDictionaryEnumerator.Current
get
Implements
System.Collections.IEnumerator
.
Definition at line
16
of file
OrderedDictionary.cs
.
17
{
18
get
19
{
20
if
(
_objectReturnType
== 1)
21
{
22
return
((DictionaryEntry)
_arrayEnumerator
.
Current
).Key;
23
}
24
if
(
_objectReturnType
== 2)
25
{
26
return
((DictionaryEntry)
_arrayEnumerator
.
Current
).Value;
27
}
28
return
Entry
;
29
}
30
}
System.Collections.Specialized.OrderedDictionary.OrderedDictionaryEnumerator.Entry
DictionaryEntry Entry
Definition
OrderedDictionary.cs:32
System.Collections.Specialized.OrderedDictionary.OrderedDictionaryEnumerator._arrayEnumerator
readonly IEnumerator _arrayEnumerator
Definition
OrderedDictionary.cs:14
System.Collections.Specialized.OrderedDictionary.OrderedDictionaryEnumerator._objectReturnType
readonly int _objectReturnType
Definition
OrderedDictionary.cs:12
System.Collections.IEnumerator.Current
object Current
Definition
IEnumerator.cs:5
System
Collections
Specialized
OrderedDictionary
OrderedDictionaryEnumerator
Generated by
1.10.0