Hi all,
I saw the method in http://msdn.microsoft.com/en-us/library/system.threading.tasks.task.getawaiter.aspx
the remark is "This method is intended for compiler user rather than use directly in code."
intended for compliler user is what mean?
In my code can I use this method, like this:
Task.Run(async () =>
{
StorageFile file = await StorageFile.GetFileFromPathAsync("aaaa");
}).GetAwaiter().GetResult();
Thank you!
自强不息,知行合一。