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

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

Deletes the specified key from the specified section.
/// or are /// a null reference (Nothing in VB) ///
public DeleteKey ( string sectionName, string keyName ) : void
sectionName string /// Name of the section to remove the key from. ///
keyName string /// Name of the key to remove. ///
Результат void
        public void DeleteKey(string sectionName, string keyName)
        {
            if (sectionName == null)
                throw new ArgumentNullException("sectionName");

            if (keyName == null)
                throw new ArgumentNullException("keyName");

            WriteValueInternal(sectionName, keyName, null);
        }