Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
Entry
DictionaryEntry
IDictionaryEnumerator.
System.Collections.Generic.Dictionary
< TKey, TValue >.Enumerator.Entry
get
Implements
System.Collections.IDictionaryEnumerator
.
Definition at line
166
of file
Dictionary.cs
.
167
{
168
get
169
{
170
if
(
_index
== 0 ||
_index
==
_dictionary
._count + 1)
171
{
172
ThrowHelper.ThrowInvalidOperationException_InvalidOperation_EnumOpCantHappen();
173
}
174
return
new
DictionaryEntry(
_current
.Key,
_current
.Value);
175
}
176
}
System.Collections.Generic.Dictionary.Enumerator._index
int _index
Definition
Dictionary.cs:142
System.Collections.Generic.Dictionary.Enumerator._dictionary
readonly Dictionary< TKey, TValue > _dictionary
Definition
Dictionary.cs:138
System.Collections.Generic.Dictionary.Enumerator._current
KeyValuePair< TKey, TValue > _current
Definition
Dictionary.cs:144
System
Collections
Generic
Dictionary
Enumerator
Generated by
1.10.0