Beispiel #1
0
        public Dictionary <String, String> getSectionContent(String sectionName, Boolean lowercasekeys)
        {
            IniSection iniSection = getSection(sectionName);

            if (iniSection == null)
            {
                return(null);
            }
            return(iniSection.getKeyValuePairs(lowercasekeys));
        }
Beispiel #2
0
        public Dictionary <String, String> getSectionContent(String sectionName)
        {
            IniSection iniSection = getSection(sectionName);

            if (iniSection == null)
            {
                return(null);
            }
            return(iniSection.getKeyValuePairs());
        }