Esempio n. 1
0
 /// <summary>
 /// Adds a section into the INI file.
 /// </summary>
 /// <param name="section">The section to add.</param>
 public void AddSection(IniSection section)
 {
     Sections.Add(section);
 }
Esempio n. 2
0
 public Migration(string buildPath, IniSection iniSection)
 {
     this.buildPath  = buildPath;
     this.iniSection = iniSection;
 }