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

◆ Value

object System.Resources.ResourceReader.ResourceEnumerator.Value
get

Implements System.Collections.IDictionaryEnumerator.

Definition at line 85 of file ResourceReader.cs.

86 {
87 get
88 {
89 if (_currentName == int.MinValue)
90 {
91 throw new InvalidOperationException(SR.InvalidOperation_EnumEnded);
92 }
93 if (!_currentIsValid)
94 {
95 throw new InvalidOperationException(SR.InvalidOperation_EnumNotStarted);
96 }
97 if (_reader._resCache == null)
98 {
99 throw new InvalidOperationException(SR.ResourceReaderIsClosed);
100 }
102 }
103 }
object GetValueForNameIndex(int index)
Dictionary< string, ResourceLocator > _resCache