在閱讀《C# 圖解教程》第五版21.9 其他異步編程模式時,按照示例代碼使用 BeginInvoke
函數發現出現了報錯信息:
Unhandled exception. System.PlatformNotSupportedException: Operation is not supported on this platform.
經過查詢文檔,從 .NET Framework 4 開始,任務並行庫為異步和並行編程提供了新的模型,即基於任務的異步模式(TAP)。在最新的 .NET 平台上,BeginInvoke
函數和 EndInvoke
函數已經不再支持。特此記錄。
參考: