| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 529 人关注过本帖
标题:[求助]函数调用出错!
取消只看楼主 加入收藏
xiaxun
Rank: 1
等 级:新手上路
帖 子:207
专家分:7
注 册:2009-8-30
结帖率:79.31%
收藏
已结贴  问题点数:16 回复次数:2 
[求助]函数调用出错!
错误 1 非静态的字段、方法或属性“sanjiaoxing.Program.qwx(string)”要求对象引用


我的代码
namespace sssssss
{
    class Program
    {
        int s;
     
          string qwx(string w)
        {
            if (int.TryParse(w, out s))
            {
                return "right";
            }
            else
            {
                Console.ForegroundColor = ConsoleColor.Blue;
                Console.Write("输入数据“{0}”有误,:", w);
                Console.ForegroundColor = ConsoleColor.White;
                return "wrong";
            }
        }

        static void Main(string[] args)
        {
           
            while (true)
            {
                int a, b, c;
                string a1, b1, c1,a2,b2,b3;
                Console.Write("\n");
                Console.ForegroundColor = ConsoleColor.White;
                while (true)
                {
                    Console.WriteLine("请输入第1数:");
                    a1 = Console.ReadLine();
                    a2 =qwx(a1);
                    if (a2 == "right")
                    {
                        break;
                    }
                    else
                    {
                        continue;
                    }           
                }
            }
        }
    }
}







请大家帮忙!

来源: http://www.
搜索更多相关主题的帖子: 函数 
2010-11-14 16:22
xiaxun
Rank: 1
等 级:新手上路
帖 子:207
专家分:7
注 册:2009-8-30
收藏
得分:0 
错误 1 非静态的字段、方法或属性“sanjiaoxing.Program.qwx(string)”要求对象引用
2010-11-14 17:11
xiaxun
Rank: 1
等 级:新手上路
帖 子:207
专家分:7
注 册:2009-8-30
收藏
得分:0 
不是这样的!关命名空间什么事情。那个都可以换的!
2010-11-14 23:36
快速回复:[求助]函数调用出错!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025742 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved