使用英语阅读

通过


编译器警告(等级 4)CS0028

“function declaration”的签名错误,不能作为入口点

Main 的方法声明无效:声明它时使用的签名无效。 Main 必须声明为静态,且它必须返回 intvoid。 有关详细信息,请参阅 Main() 和命令行参数

下面的示例生成 CS0028:

// CS0028.cs  
// compile with: /W:4 /warnaserror  
public class a  
{  
    public static double Main(int i)   // CS0028  
    // Try the following line instead:  
    // public static void Main()  
    {  
    }  
}