黑马程序员技术交流社区

标题: 遇到一个问题!! [打印本页]

作者: 孟勃宇    时间: 2013-5-16 09:15
标题: 遇到一个问题!!
就是我写了一个:
        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也是定义了的
这是为什么?
谢啦。
作者: 郑丹丹1990    时间: 2013-5-16 11:15
  return d;
return了呀!那么你的if语句就无法执行。

作者: 孟勃宇    时间: 2013-5-16 12:36
郑丹丹1990 发表于 2013-5-16 11:15
return d;
return了呀!那么你的if语句就无法执行。

哦哦 知道了 3Q




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2