我有一个类Insurance
和InsuranceTest
,这些类是具有入口点static void main(string[] args)
的较大项目的一部分。它拒绝执行此入口点,并且不会打印出我的结果。
保险类别
namespace IT
{
class Insurance
{
int cust;
string agent;
string state;
public Insurance(int cust, string agent, string state)
{
this.cust = cust;
this.agent = agent;
this.state = state;
}
public Insurance(int cust, string agent)
: this(cust, agent, "")
{
}
public int Cust
{
get { return cust; }
set { cust = value; }
}
public string Agent
{
get { return agent; }
set { agent = value; }
}
public string State
{
get { return state; }
set { state = value; }
}
public static void main(string[] args)
{
Employee e1 = new Employee("Sugar", "Insurance Ave", 6534);
e1.Name = "Sugar";
e1.Address = "Insurance Ave";
e1.Id = 6534;
Console.WriteLine(e1.Name);
Console.WriteLine(e1.Address);
Console.WriteLine(e1.Id);
}
}
}
保险测试类
namespace IT
{
class InsuranceTest
{
static void main(string[] args)
{
Insurance i1 = new Insurance(7, "Agent Store", "PA");
i1.Customers = 7;
i1.Agent = "Agent Store";
i1.State = "PA";
Console.WriteLine("Total Customers" + i1.Cust);
Console.WriteLine(i1.Agent);
Console.WriteLine(i1.State);
}
}
}
注意:InsuranceTest
并非从入口点开始执行。这些是许多类的类,当我进入Visual Studio中的项目属性并尝试选择并启动对象时。 InsuranceTest
甚至没有显示。
答案 0 :(得分:2)
C#方法名称区分大小写。 Main
应大写:
static void Main(string[] args)
{
// Here ^
答案 1 :(得分:0)
您可以通过在解决方案资源管理器中单击项目并选择属性来打开属性窗口。在第一个选项卡上,有一个用于设置入口点类别的组合框。选择适当的主要方法。