C# ini 파일 읽고 쓰기
[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); public void SetIni(string section, string key, string val) { SetIni(section, key, val, Path.GetDire..
더보기