How to loop through all XElement attributes and get their values

Avadon

New Member
How to loop through all XElement attributes and get their values?\[code\]foreach (SyndicationElementExtension extension in f.ElementExtensions){ XElement element = extension.GetObject<XElement>(); // How to loop through all its attributes and get their values?}\[/code\]Thank you!
 
Back
Top