我使用下面的C#代码将JSON数据的字符串转换为使用JSON.Net框架的动态对象:
原文链接:https://www.f2er.com/xml/293555.html// 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,然后重新使用上面的代码,但那感觉就像作弊。
谢谢。