Alexandria.IniFile.FindOrCreateSection C# (CSharp) Метод

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

Return the section with the given name, creating it if necessary.
public FindOrCreateSection ( string name ) : IniFileSection
name string The name of the section.
Результат IniFileSection
        public IniFileSection FindOrCreateSection(string name)
        {
            IniFileSection section;

            if (!SectionsByName.TryGetValue(name, out section))
                section = new IniFileSection(this, name);
            return section;
        }