我已使用以下C#代码使用JSON.Net框架将JSON数据字符串转换为动态对象:
// Creates a dynamic .Net object representing the JSON data
var ProductDB = JsonConvert.DeserializeObject<dynamic>(JsonData);
转换后,我可以使用如下代码直接访问元素:
// Variables to be used
string ProductID;
string ProductType;
int ProductQty;
// Loop through each of the products
foreach (dynamic product in ProductDB.products)
{
ProductID = product.id;
ProductType = product.type;
ProductQty = product.qty;
}
使用XML数据有与此类似的东西吗?我可以使用JSON.net将我的XML转换为JSON,然后重新使用上面的代码,但这感觉像是在作弊。
谢谢。