我想从 XML 响应中获取 JSON 数据。实际上 Web 服务正在返回响应如下:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">
[
{
"id": 1,
"name": "paresh",
},
{
"id": 2,
"name": "jacob",
},
{
"id": 3,
"name": "color",
},
{
"id": 4,
"name": "Adil color",
}
]</string>
我已经参考了一些文章。如果响应只是 XML,那么我可以实现如下:
MyListBox.ItemsSource = from tweet in xmlTweets.Descendants("student")
select new StudentItem
{
ID = tweet.Element("id").Value,
Name = tweet.Element("name").Value,
};
但这里我的问题是获取内部的 JSON,并在 ListBox 中显示?