最終的にデータを保存するには、プロジェクトで 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);
(私のコードで)