SyntaxFix
Write A Post
Hire A Developer
Questions
On wp8:
Wrap it:
Task GetCustomersSynchronously() { Task t = new Task(async () => { myCustomers = await GetCustomers(); } t.RunSynchronously(); }
Call it:
GetCustomersSynchronously();