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

◆ GetEnumeratorHelper()

IDictionaryEnumerator System.Resources.ResourceSet.GetEnumeratorHelper ( )
inlineprivate

Definition at line 88 of file ResourceSet.cs.

89 {
90 IDictionary table = _table;
91 if (table == null)
92 {
93 throw new ObjectDisposedException(null, SR.ObjectDisposed_ResourceSet);
94 }
95 return table.GetEnumerator();
96 }
Dictionary< object, object > _table
new IEnumerator< T > GetEnumerator()

References System.Resources.ResourceSet._table, System.Collections.Generic.IEnumerable< out T >.GetEnumerator(), and System.SR.ObjectDisposed_ResourceSet.

Referenced by System.Resources.ResourceSet.GetEnumerator().