调用 IsolatedStorage.Load 方法 (Windows Phone 8) 时出错

本文关键字:出错 Phone Windows IsolatedStorage Load 方法 调用 | 更新日期: 2023-09-27 18:35:12

我正在寻找在Windows Phone 8的存储中写入对象

一切正常,但是当我调用 Load 方法时: IsolatedStorageOperations.Load<Friend>("myXML.xml")

我总是收到错误:

Cannot implicitly convert type 'System.Threading.Tasks.Task 
                          <'friendsbook.Lib.Friend'>' to 'friendsbook.Lib.Friend'

它也不适用于:

IsolatedStorageOperations.Load("myXML.xml")

但是调用 Save 方法没有问题!!

任何人都可以在这个问题上帮助我吗?

谢谢。

调用 IsolatedStorage.Load 方法 (Windows Phone 8) 时出错

IsolatedStorageOperations.Load<Friend> 方法是异步的,调用时使用 await 关键字:

var friend = await IsolatedStorageOperations.Load<Friend>("myXML.xml");