没有过载的方法达成协议需要参数
using System;namespace zuoye
{
class MainClass
{
public static void Main (string[] args)
{
Deal();
}
static int Deal()
{
int n;
int i;
while(i<11)
{
if(i==10)
{
n=1;
}
else{
n=n-n/2-1;
Deal(n);
i--;
}
}
Console.WriteLine(n);
}
}
}
编译错误,提示g:\c#\zuoye\zuoye\Main.cs(21,21): Error CS1501: No overload for method 'Deal' takes 1 arguments (CS1501) (zuoye)
即,没有过载的方法达成协议需要参数。。。。。。。。求高手赐教