Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Indique a expressão LINQ que permite criar emmemória o documento XML “A” com a estrutura“<B><D></D><!-- C --></B>”
que permite criar em
memória o documento
“A” com a estrutura
“<B><D></D><!-- C --></B>”
Nenhuma das opções
XDocumentA = new XDocument(new XElement(“B”, new XElement(“C”), new XComment(“D”)))
XDocument
A = new XDocument(new XElement(“B”, new XElement(“C”), new XComment(“D”)))
XElementA = new XElement(“B”, new XElement(“D”), new XComment(“C”))
XElement
A = new XElement(“B”, new XElement(“D”), new XComment(“C”))
XDocumentA = new XDocument(new XElement(“B”, new XElement(“D”), new XComment(“C”)))
A = new XDocument(new XElement(“B”, new XElement(“D”), new XComment(“C”)))
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!