1.传统ThreadStart
2.ParameterizedThreadStart
3.委托thread = new Thread(delegate() { NoticeBroadcast(userinfos, com2); });
4.匿名方法 thread = new Thread(() =>NoticeBroadcast(userinfos, com2));
1.传统ThreadStart
2.ParameterizedThreadStart
3.委托thread = new Thread(delegate() { NoticeBroadcast(userinfos, com2); });
4.匿名方法 thread = new Thread(() =>NoticeBroadcast(userinfos, com2));