我想要什么:
从 AppData 中获取要使用的 xml
我编码的内容
StorageFolder localFolder = Windows.Storage.ApplicationData.Current.LocalFolder;
StorageFile sampleFile = localFolder.GetFileAsync("abc.xml");
我得到
的错误:无法将类型“Windows.Foundation.IAsyncOperation”隐式转换为“Windows.Storage.StorageFile”
我检查的内容
当此方法成功完成时,它会返回一个表示该文件的StorageFile 。
我有什么
Windows 8 Release Preview 64bit;
适用于 Windows 8 的 Visual Studio Express 2012 RC;
C#
我根据 MSDN 文档编写代码,为什么会发生这个错误以及如何解决?