using System; using System.Runtime.InteropServices; using System.Text; namespace Telemonitor { class iniFile { public string path; [DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); [DllImport("kernel32")] private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath); /// /// Конструктор класса /// /// Путь к INI-файлу public iniFile(string INIPath) { path = INIPath; } /// /// Запись данных в INI-файл /// /// /// Название секции /// /// Имя ключа /// /// Значение public void IniWriteValue(string Section, string Key, string Value) { WritePrivateProfileString(Section, Key, Value, this.path); } /// /// Чтение данных из INI-файла /// /// /// /// Значение заданного ключа public string IniReadValue(string Section, string Key) { StringBuilder temp = new StringBuilder(255); int i = GetPrivateProfileString(Section, Key, "", temp, 255, this.path); return temp.ToString(); } } }