?????????ν??“???”?????????????????????????????飬?????????????????????С?????????????????????????????????“?????”???????????????????????£??????????????????????????????????????????????
????????????????????????????????????????
???????????????
????????????
?????????????????????????????????????????????е??????????????????????????? ???????????????????????????
????????????
?????????????е???????????????????????????м????(???????????????)???????????????????????????????????????????
?????????????
?????????????????а?????????????????????????п????????ж??????????????в??????????????????????????????????е?????????????????
???????????????
??????ó????????????????????Thread????????????????κ??????????????????????????????????????????????й???л?????????????????κ??????????????????
???????????????????У??κ?????????????????????????????????
????????????????ó??????????????е???????????CLR????????ó?????ж????????ó???????
??????????????????????????CLR????????????п?????????????????????κ???????????????????????????????????????????????????е???????????????ó?????ж??????????????????????????
????????????????????????????????????????????????в??б????????????????? CPU ??????????????????ó????Ч???
????????????????????
??????????????????? System.Threading.Thread ?????????????????????????????????????
????????????????е????????
????δ??????????????????????? Start ????δ???????????????????????????????е???????????????????cpu??????????
???????????????????????в???? CPU ????????????
????????????????????????????????????????е??????????? Sleep ????????????? Wait ????????? I/O ??????????
????????????????????????л??????????????

???????????
????1???????
?????????е????????е???????????
using System;
using System.Threading;
namespace Threading
{
class Program
{
static void Main(string[] args)
{
Thread th = Thread.CurrentThread;
th.Name = "MainThread";
Console.WriteLine("This is {0}"?? th.Name);
Console.ReadKey();
}
}
}
?????????This is MainThread