用C#編寫 exe文件,我需要一個複雜的返回值返回到另一個C#項目如何從一個main()在C#中獲得一個複雜的返回值
這裏是我的代碼:
class Program
{
private class MyObject
{
private int num;
public int Num
{
get
{
return (this.num);
}
set
{
this.num = value;
}
}
public MyObject(int num)
{
this.Num = num;
}
}
[STAThread]
public static MyObject Main(string[] args)
{
return new MyObject(5);
}
}
這給了我以下錯誤: ... \ ConsoleApplication1.exe' 不包含適用於入口點的靜態'Main'方法。
我試過玩它,但我沒有成功,使它返回一個複雜的價值。
爲什麼你需要那個?在程序之間發送對象有很多種方法。 –