用 C# 编写的 exe 文件,我需要将复杂的返回值返回到另一个 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' 方法。
我试过玩它,但我没有成功让它返回一个复杂的值。