2013-10-31 36 views
1

的代碼產生以下錯誤:錯誤:必須聲明主體,因爲它不標記爲抽象,EXTERN或部分

Error: Ini.IniFile.WritePrivateProfileString(string, string, string, string)' must declare a body because it is not marked abstract, extern, or partial

Error2: Ini.IniFile.GetPrivateProfileString(string, string, string, System.Text.StringBuilder, int, string)' must declare a body because it is not marked abstract, extern, or 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(); 
    } 
    } 
} 
+0

邊注:沒有必要把返回的字符串,只需調用'回報retVal.ToString();' – LarsTech

回答

相關問題