Nini.Ini.IniWriter.WriteSection C# (CSharp) Méthode

WriteSection() public méthode

public WriteSection ( string section ) : void
section string
Résultat void
        public void WriteSection(string section)
        {
            ValidateState ();
            writeState = IniWriteState.Section;
            WriteLine ("[" + section + "]");
        }

Same methods

IniWriter::WriteSection ( string section, string comment ) : void

Usage Example

Exemple #1
0
 public void DisposeStringWriterNullReference()
 {
     StringWriter writer = new StringWriter ();
     IniWriter iniWriter = new IniWriter (writer);
     iniWriter.WriteSection ("Test");
     iniWriter.Dispose ();
 }
All Usage Examples Of Nini.Ini.IniWriter::WriteSection