1.每个程序有一个主线程,如果一个循环处于主线程中,程序在较长的循环,将出现“不响应”的情况. 线程在System.Threading中.线程创建可专用于一个功能块(方法.函数), 线程的开始用Start方法,线程的结束用Abort方法,线程的暂停使用Sleep方法 2.委托的思想,就是自己不能干或不想干的事,委托另一个有能力或有权限的人去干那件事. 实际上,我们一直要用委托思想,比如基本类型的变量名.Dim i As Integer 除了变量名可以用委托一样,方法(sub)也可以用委托,…
基础类: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 线程和事件的关系 { public class DemoTest { public DemoTest(int time) { this.Time = time; } public delegate void DosomeThing(obj…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace ConsoleApplication11 { class Program { public delegate void TestDeleagte(string temp); static void Main(string[] args) { Thread t…