Qus:    The XML document and XML reader are different?
Dec 18, 2020 15:41 DotNet 2 Answers Views: 1174 DIVYA

XmlDocument is very easy to use but the only real drawback is that it loads the whole XML document into memory to process whereas XmlReader is a stream based reader so will keep your process memory utilization generally flatter but is more difficult to use.

Prev Next
Answers (2)
PARTH Dec 19, 2020 11:40
Answer:   XmlDocument is very easy to use but the only real drawback is that it loads the whole XML document into memory to process whereas XmlReader is a stream based reader so will keep your process memory utilization generally flatter but is more difficult to use.

FRAUSKY Dec 19, 2020 14:32
Answer:   XML document: The contents of an xml file in memory, starting from storage, are activated.
XMLReader: a reader that provides the speed, noncached, forward access to an XML web page.

Post Your Answer
Guest User

Not sure what solution is right for you?

Choose the right one for you.
Get the help of the experts and find a solution that best suits your needs.


Let`s Connect