如何遍历所有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; // ... }