сено все.
я пытаюсь преобразовать HTML в XML
что означает извлечение всех элементов с текстом
использование этого кода не работает, может быть, у кого-то есть ответ?
System.Xml.Linq.XElement query1 = new System.Xml.Linq.XElement("RawHTMLData",
from q in hDoc.Descendants("TABLE")
where q.HasElements
select new System.Xml.Linq.XElement("TABLE" + (++i).ToString(),
from j in q.Elements("TR")
where j.HasElements && j.Descendants("div") != null
select new System.Xml.Linq.XElement("Row",
from hh in j.Descendants("div")
where tt => j.Descendants("div").Contains(hh.Value)
select(TT(hh)))));