1

最后我必须在我的项目中使用 INI 文件来存储一些数据。所以我在我的项目中创建了一个具有不同命名空间的类。现在,当我尝试执行我的项目时,我收到了这个错误。我正在使用 Microsoft Visual C# 2010 Express。我的代码是:

namespace Ini
{
    public class IniFile
    {
        public string path;

        [DllImport("kernel32")]
        private static extern long WritePrivateProfileString(string section,
            string key,int 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, int 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();

        }
    }

}

我在我的主要项目中使用它.. using Ini; (in namespace)

IniFile MyIni = new IniFile("D:\\Database.ini");
 MyIni.IniWriteValue("ProductBase", "Key", 1); 

(在我的代码中)

4

1 回答 1

2

正如您在文档p/invoke.net中看到的那样,WritePrivateProfileString()有四个字符串参数,因此将您的定义更改为

[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section,
        string key, string val, string filePath);

和用法

public void IniWriteValue(string Section, string Key, int Value)
{
    WritePrivateProfileString(Section, Key, Value.ToString(), this.path);
}
于 2013-06-27T08:09:20.597 回答