就是我写了一个:
public long GetIniN(string strSectionName, string strKeyWord, long lngDefDouble)
{
long d;
d = lngDefDouble;
string s;
d = GetPrivateProfileInt(strSectionName, strKeyWord, lngDefDouble, this.path);
return d;
if(d != lngDefDouble) //就这儿老出错
{
s= d.ToString ();
d = WritePrivateProfileString(strSectionName, strKeyWord, s, this.path);
}
}
this.path也是定义了的
这是为什么?
谢啦。 |