System.Resources.ResourceSet.GetEnumeratorHelper C# (CSharp) Méthode

GetEnumeratorHelper() private méthode

private GetEnumeratorHelper ( ) : IDictionaryEnumerator
Résultat 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();
        }