Console.WriteLine 打印不出来
Console.WriteLine not printing out
我有一个 class Insurance
和 InsuranceTest
这些 class 是一个更大的项目的一部分,有一个入口点 static void main(string[] args)
。它拒绝执行这个入口点并且不打印出我的结果。
保险CLASS
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);
}
}
}
保险测试Class
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
不是从入口点执行的。这些是许多 classes 中的 classes,当我转到 Visual Studio 中的项目属性并尝试 select 和启动对象时。 InsuranceTest
甚至没有出现。
C# 方法名称区分大小写。 Main
应该大写:
static void Main(string[] args)
{
// Here ^
您可以通过单击解决方案资源管理器中的项目和 select 属性来打开属性 window。在第一个选项卡上有一个用于设置入口点 类 的组合框。选择合适的主要方法。
我有一个 class Insurance
和 InsuranceTest
这些 class 是一个更大的项目的一部分,有一个入口点 static void main(string[] args)
。它拒绝执行这个入口点并且不打印出我的结果。
保险CLASS
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);
}
}
}
保险测试Class
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
不是从入口点执行的。这些是许多 classes 中的 classes,当我转到 Visual Studio 中的项目属性并尝试 select 和启动对象时。 InsuranceTest
甚至没有出现。
C# 方法名称区分大小写。 Main
应该大写:
static void Main(string[] args)
{
// Here ^
您可以通过单击解决方案资源管理器中的项目和 select 属性来打开属性 window。在第一个选项卡上有一个用于设置入口点 类 的组合框。选择合适的主要方法。