Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
同期のライブラリ メソッドを呼び出しています。async新しい機能と機能を使用したいのawaitですが、ライブラリが非同期性をサポートしていない (タスクを返さない) ため、方法がわかりません。
async
await
それを行う方法はありますか、それとも正確に何をするラッパーを構築する必要がありますか?
内で呼び出すことにより、バックグラウンド スレッドで同期コードを実行できますTask.Run。
Task.Run
このようなもの?
using System.Threading.Tasks; new Task<bool>(() => { // Do something return true; }).Start();