C# 操作ini文件

 
C#操作ini配置文件的帮助类
public 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);
 
        //构造初始化文件路径
        public IniFile(string INIPath)
        {
            path = INIPath;
        }        
 
        //写入信息
        public void IniWriteValue(string Section, string Key, string Value)
        {
            WritePrivateProfileString(Section, Key, Value, this.path);
        }
        
        //读取信息
        public string IniReadValue(string Section, string Key)
        {
            StringBuilder temp = new StringBuilder(255);
 
            int i = GetPrivateProfileString(Section, Key, "", temp, 255, this.path);
 
            return temp.ToString();
        }
    }

你可能感兴趣的:(职场,C#,休闲,ini配置)