Replies: 1 comment 12 replies
-
There isn't the thread during
Nothing waits for
This is called event-based asynchronous pattern. You can check the (very detailed) post about how async/await really works. The posts also explains why async/await replaces other asynchronous patterns to become the major pattern in .NET. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to ask that what the runtime will do ? waiting or doing something else?
forexample :
await Shell.Current.GoToAsync("../");when I want to go to some page(or read database or others). what the thread will do?
so why we use await? if I do not use await and create a delegate then when the page is open then execute the delegate (i+=1) it is same right?
like the MVVM event.
I create a event and when the page is open the event will execute the
i+=1Beta Was this translation helpful? Give feedback.
All reactions