phdesign.NppToolBucket.Infrastructure.Settings.Load C# (CSharp) Method

Load() private method

private Load ( ) : void
return void
        private void Load()
        {
            _allSettings = new Dictionary<string, Dictionary<string, Setting>>();
            foreach (var sectionName in GetSections())
            {
                var section = new Dictionary<string, Setting>();
                foreach (var keyName in GetKeys(sectionName))
                {
                    section.Add(keyName, new Setting(GetValue(sectionName, keyName)));
                }
                _allSettings.Add(sectionName, section);
            }
        }