错误 1 程序ConsoleApplication2.exe不包含适合于入口点的静态“Main”方法

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace ConsoleApplication2
{
/// <summary>
/// 我的第一个Thread操作
/// </summary>

public class Program
{
//主线程
public void Main()
{
//创建一个线程来执行 Function 函数
Thread _trd = new Thread(new ThreadStart(MyClass.Function));
//让线程在后台执行

//_trd.IsBackground = true;
//线程开始时,每1秒执行一次

//Thread.Sleep(1000);
_trd.Start();
//Thread _trd_access = new
}
}

//自己定义的类
class MyClass
{
//自定义一个简单方法
public static void Function()
{
int i = 0;
i ++;
while (true)
{
System.Console.WriteLine("The Result is :" + i);
}
}

}
}

繁星点点滴滴
浏览 179回答 2
2回答

千巷猫影

public static void Main() ???很久没写了

绝地无双

Main方法要定义成:static void Main()
打开App,查看更多内容
随时随地看视频慕课网APP