我是否可以从另一个程序集中获取.EXE的返回值获得一些帮助。我收到以下错误:
错误1:程序' Sample.exe'不包含静态' Main'适用于入口点sample.exe的方法。
Customer.cs
public int InsertCustomer() {
return 100;
}
Program.cs的
public static int Main() {
customer x = new customer ();
int ID_c = InsertCustomer();
return ID_c;
}