System.Resources.ResourceSet.GetEnumeratorHelper C# (CSharp) Method

GetEnumeratorHelper() private method

private GetEnumeratorHelper ( ) : IDictionaryEnumerator
return IDictionaryEnumerator
        private IDictionaryEnumerator GetEnumeratorHelper()
        {
            Hashtable copyOfTable = Table;  // Avoid a race with Dispose
            if (copyOfTable == null)
                throw new ObjectDisposedException(null, Environment.GetResourceString("ObjectDisposed_ResourceSet"));
            return copyOfTable.GetEnumerator();
        }