System.Configuration.KeyValueInternalCollection.KeyValueInternalCollection C# (CSharp) Метод

KeyValueInternalCollection() публичный Метод

public KeyValueInternalCollection ( AppSettingsSection root ) : System
root AppSettingsSection
Результат System
        public KeyValueInternalCollection(AppSettingsSection root) {
            _root = root;
            foreach (KeyValueConfigurationElement element in _root.Settings) {
                base.Add(element.Key, element.Value);
            }
        }