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

WriteValueInternal() приватный Метод

Writes a T:System.String value to the ini file.
/// The write failed. ///
private WriteValueInternal ( string sectionName, string keyName, string value ) : void
sectionName string The name of the section to write to .
keyName string The name of the key to write to.
value string The string value to write
Результат void
        private void WriteValueInternal(string sectionName, string keyName, string value)
        {
            if (!NativeMethods.WritePrivateProfileString(sectionName, keyName, value, m_path))
            {
                throw new System.ComponentModel.Win32Exception();
            }
        }