System.Resources.ResourceSet.GetEnumeratorHelper C# (CSharp) 메소드

GetEnumeratorHelper() 개인적인 메소드

private GetEnumeratorHelper ( ) : IDictionaryEnumerator
리턴 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();
        }