.exe不包含适用于入口点的静态“Main”方法。
为此目的,我已经转到应用程序选项卡上的项目属性,然后启动对象,但它显示它没有设置,我不能像frmMain那样输入我的程序。
如何在启动对象上输入我的程序?
答案 0 :(得分:4)
创建一个新的源代码文件(可能将其命名为“Program.cs”)。在该文件中,插入如下内容:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MyApplication
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Console.WriteLine("* Press Any Key to Exit *");
Console.ReadKey();
}
}
}