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 }
readonly Dictionary< TKey, TValue > _dictionary