|
|
|
|
|
by pjmlp
892 days ago
|
|
> async/await guarantees you won't have deadlocks You will get them in .NET and C++, because they map to real threads being shared across tasks. There is even a FAQ maintained by .NET team regarding gotchas like not calling ConfigureAwaitable with the right thread context in some cases where it needs to be explicitly configured, like a task moving between foreground and background threads. |
|