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(){//創(chuàng)建一個線程來執(zhí)行 Function 函數(shù)Thread _trd = new Thread(new ThreadStart(MyClass.Function));//讓線程在后臺執(zhí)行//_trd.IsBackground = true;//線程開始時,每1秒執(zhí)行一次//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);}}}}
錯誤 1 程序ConsoleApplication2.exe不包含適合于入口點(diǎn)的靜態(tài)“Main”方法
繁星點(diǎn)點(diǎn)滴滴
2022-07-14 12:11:48