1

コードは次のエラーを生成します。

エラー: Ini.IniFile.WritePrivateProfileString(string, string, string, string)' は、abstract、extern、または partial とマークされていないため、本体を宣言する必要があります

エラー 2: Ini.IniFile.GetPrivateProfileString(string, string, string, System.Text.StringBuilder, int, string)' は、abstract、extern、または partial とマークされていないため、本体を宣言する必要があります

using System.Runtime.InteropServices;
using System.Text;

namespace Ini
{
  public class IniFile
  {
    public string path;

    public IniFile(string INIPath)
    {
      this.path = INIPath;
    }

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

    [DllImport("kernel32")]
    private static int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);

    public void IniWriteValue(string Section, string Key, string Value)
    {
      IniFile.WritePrivateProfileString(Section, Key, Value, this.path);
    }

    public string IniReadValue(string Section, string Key)
    {
      StringBuilder retVal = new StringBuilder((int) byte.MaxValue);
      IniFile.GetPrivateProfileString(Section, Key, "", retVal, (int) byte.MaxValue, this.path);
      return ((object) retVal).ToString();
    }
  }
}
4

1 に答える 1