Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Value

object? IDictionaryEnumerator. System.Collections.Generic.Dictionary< TKey, TValue >.Enumerator.Value
get

Implements System.Collections.IDictionaryEnumerator.

Definition at line 190 of file Dictionary.cs.

191 {
192 get
193 {
194 if (_index == 0 || _index == _dictionary._count + 1)
195 {
196 ThrowHelper.ThrowInvalidOperationException_InvalidOperation_EnumOpCantHappen();
197 }
198 return _current.Value;
199 }
200 }
readonly Dictionary< TKey, TValue > _dictionary