System.Configuration.ConfigurationLockCollection.RemoveInheritedLocks C# (CSharp) 메소드

RemoveInheritedLocks() 개인적인 메소드

private RemoveInheritedLocks ( ) : void
리턴 void
        internal void RemoveInheritedLocks() {
            StringCollection removeList = new StringCollection();
            foreach (string key in this) {
                if (DefinedInParent(key)) {
                    removeList.Add(key);
                }
            }
            foreach (string key in removeList) {
                internalDictionary.Remove(key);
                internalArraylist.Remove(key);
            }
        }