ClientLauncher.IniFiles.DeleteSection C# (CSharp) Метод

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

Deletes a section from the ini file.
/// is a null reference (Nothing in VB) ///
public DeleteSection ( string sectionName ) : void
sectionName string /// Name of the section to delete. ///
Результат void
        public void DeleteSection(string sectionName)
        {
            if (sectionName == null)
                throw new ArgumentNullException("sectionName");

            WriteValueInternal(sectionName, null, null);
        }