2010-08-23 43 views

回答

2
static void removeAllAttributes(XDocument doc) 
{ 
    foreach (var des in doc.Descendants()) 
     des.RemoveAttributes(); 
} 

用法:

var doc = XDocument.Load(path); //Or .Parse("xml"); 
removeAllAttributes(doc); 

string res = doc.ToString(); 
3

的foreach(XmlElement的EL在nodes.SelectNodes( 「.//*」)) {

el.Attributes.RemoveAll();

}

相關問題