XDocumentから要素を選択し、単一のラムダ式でそれぞれに属性を追加したいと思います。これは私が試していることです:
xhtml.Root.Descendants()
.Where(e => e.Attribute("documentref") != null)
.Select(e => e.Add(new XAttribute("documenttype", e.Attribute("documentref").Value)));
これを行う正しい方法は何ですか?
ありがとう!