请教:没有定义程序入口点,怎么回事?
using System;class Test
{
public int max(int x,int y)
{
if(x>y)
return x;
else
return y;
}
public void Main(){
Console.WriteLine("the max of 6 and 8 is:{0}",max(6,8));
Console.WriteLine("please enter your name");
Console.ReadLine();
Console.WriteLine("welcome to you!");
}
}
这个我编译的时候为什么说我没有定义程序入口点阿?我这里有Main()阿 ,是怎么回事啊?
错误原因:
Main方法必须为静态
在将Main改为静态仍然出错的原因:
掉用了类中的非静态方法(max),这是不允许的,你必须要有这个类的实例,然后才能够调用这个实例中的非静态方法
houyunqing
因为下面帖太多了,所以直接写这里了
[此贴子已经被houyunqing于2005-8-23 9:48:45编辑过]