如何从.EXE中读取返回值

时间:2015-03-30 20:55:32

标签: c#

我是否可以从另一个程序集中获取.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;
}

0 个答案:

没有答案