摘要:
using System;using System.Collections.Generic;using System.Text;using System.Threading;namespace sample{ class AsyncDemo { public string TestMethod(int callDuration, out int threadid) { Console.WriteLine("Test Method begins"); Thread.Sleep(callDuration); threadid = System.Threading.Thread. 阅读全文