摘要:
using System;using System.Collections.Generic;using System.Text;using System.Threading;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Thread newThread = new Thread(test); newThread.Start("para input"); newThread =... 阅读全文
摘要:
using System;using System.Threading;class Test{ static void Main() { // To start a thread using a static thread procedure, use the // class name and method name when you create the ThreadStart // delegate. Beginning in version 2.0 of the .NET Framework, // it is no... 阅读全文