配置文件操作(*.ini)

调用系统Dll对ini的文件进行读写

[DllImport("kernel32")]
       private static extern int GetPrivateProfileString(string section, string key, string defVal, StringBuilder retVal, int size, string filePath);
       [DllImport("kernel32")]
       private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
       private static string Path = Application.StartupPath.ToString() + "\\App.ini";
       ///


       /// 写INI文件
       ///

       /// 段落
       ///
       ///
       public static void IniWriteValue(string section, string key, string iValue)
       {
           WritePrivateProfileString(section, key, iValue, Path);
       }

       ///


       /// 读取INI文件
       ///

       /// 段落
       ///
       /// 返回的键值
       public static string IniReadValue(string section, string key)
       {
           StringBuilder temp = new StringBuilder(255);

           int i = GetPrivateProfileString(section, key, "", temp, 255, Path);
           return temp.ToString();
       }

转载于:https://www.cnblogs.com/P-lotor/archive/2012/11/12/2766264.html

你可能感兴趣的:(配置文件操作(*.ini))