今天上午我确实需要到其他地方。 因此,我决定在此提出业绩问题。
下面的法典有多种功能,但称之为“洛德”和“拯救儿童”方法。 这似乎远远没有效率。 请有人提供该法典,但装货和储蓄线在休息室外。 我只想提负荷和节省一次。
章 次 页 次
public void RemoveNodes(IList<String> removeItems)
{
foreach (String removeItem in removeItems)
{
XDocument document = XDocument.Load(fullFilePath);
var results = from item in document.Descendants(elementName)
let attr = item.Attribute(attributeName)
where attr != null && attr.Value == removeItem.ToString()
select item;
results.ToList().ForEach(item => item.Remove());
document.Save(fullFilePath);
}
}