Information Quite simply, I’m attempting to create an app that would display the contacts for a user.
I’m also a self-taught programmer, so I
The problem is that the GetImage method is asynchronous, so you need to wait for the result to complete:
Task getImageTask = GetImage(c); getImageTask.RunSynchronously(); return getImageTask.Result;