您好,登錄后才能下訂單哦!
把代碼過程經常用的內容做個珍藏,如下代碼是關于C#中異步回調函數演示的代碼,應該是對大伙有些用途。
static void Main(string[] args)
{
Func<string,string> showMessage = ShowMessage;
IAsyncResult result = showMessage.BeginInvoke("測試異步委托", new AsyncCallback(Completed), null);
while(!result.IsCompleted)
{
Console.WriteLine("主線程可以進行其它的操作!");
}
Console.ReadLine();
}
static string ShowMessage(string x)
{
string current = string.Format("當前線程id為{0}",Thread.CurrentThread.ManagedThreadId);
Thread.Sleep(3000);
return string.Format("{0},輸入為{1}", current, x);
}
static void Completed(IAsyncResult result)
{
Console.WriteLine("異步完成!");
AsyncResult _result = (AsyncResult) result;
Func<string, string> showMessage = (Func<string, string>) _result.AsyncDelegate;
Console.WriteLine(showMessage.EndInvoke(_result));
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。