将XML转换为动态C#对象

前端之家收集整理的这篇文章主要介绍了将XML转换为动态C#对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用下面的C#代码将JSON数据的字符串转换为使用JSON.Net框架的动态对象:
// 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,然后重新使用上面的代码,但那感觉就像作弊。

谢谢。

原文链接:https://www.f2er.com/xml/293555.html

猜你在找的XML相关文章