c# – 如何循环遍历所有XElement属性并获取其值

前端之家收集整理的这篇文章主要介绍了c# – 如何循环遍历所有XElement属性并获取其值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何遍历所有XElement属性获取其值?
foreach (SyndicationElementExtension extension in f.ElementExtensions)
{
    XElement element = extension.GetObject<XElement>();

    // How to loop through all its attributes and get their values?
}

谢谢!

解决方法

简单 – 使用 Attributes()方法
foreach (var attribute in element.Attributes())
{
    string value = attribute.Value;
    // ...
}
原文链接:https://www.f2er.com/csharp/92916.html

猜你在找的C#相关文章