生成错误“程序不包含适用于入口点的静态“主”方法”

时间:2019-11-08 16:12:47

标签: c# .net

我在构建解决方案时得到了这个。在此解决方案中,我只有两个类文件,但不确定该错误来自何处。

棒球课

public class Baseball
{

    private int wins = 0;
    private int defeats = 0;;

    public Baseball(string n, string s)
    {
        this.name = n;
        this.stadium = s;
    }

     public void PlayGame(int runsFor, int runsAgainst)
       {
          if (runsFor > runsAgainst)
              this.wins++;
          else
              this.defeats++;

       }

   }

字段类

  public class Player
     {
      public string Name { get; set; }
      public string Stadium {get; set;}
     }

我不知道此错误是什么,因此需要我协助我做错什么导致该错误。

1 个答案:

答案 0 :(得分:-2)

您需要使用此方法的类:

public static void main(String[] args)

该方法在应用程序运行时被调用,这对于Java程序来说是必须的。