This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Font: https://www.codeproject.com/Articles/1966/An-INI-file-handling-class-using-C | |
public class IniFile | |
{ | |
public string path; | |
[DllImport("kernel32")] | |
private static extern long WritePrivateProfileString(string section, | |
string key, string val, string filePath); | |
[DllImport("kernel32")] |