我在http://respro2013webapi.uhurucloud.com/api/values上托管了一个简单的 webapi ,它返回一个字符串数组
<ArrayOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<string>value1</string>
<string>value2</string>
</ArrayOfstring>
我在我的 Windows 手机应用程序中使用这个 webapi,当我使用时
var books = JsonConvert.DeserializeObject<Details[]>(e.Result);
它给出了将值“value1”转换为类型的异常错误
如何在 win 手机应用程序的列表中显示结果