System.Configuration.KeyValueInternalCollection.KeyValueInternalCollection C# (CSharp) Method

KeyValueInternalCollection() public method

public KeyValueInternalCollection ( AppSettingsSection root ) : System
root AppSettingsSection
return System
        public KeyValueInternalCollection(AppSettingsSection root) {
            _root = root;
            foreach (KeyValueConfigurationElement element in _root.Settings) {
                base.Add(element.Key, element.Value);
            }
        }