Select from following answers:- XmlDocument
- XmlReader
- XDocument
- All Above
XmlReader class is stream-based; you can open the file and read until you retrieve the information you need and then close the file. Thus, you don't need to allocate memory to hold the entire XML file.
The XmlDocument class needs to load the complete XML file into memory before it can be used. even if your computer had enough memory, this operation would be painfully slow.
Show Correct Answer
Source: MeasureUp.com | Asked In: Many Interviews |
Alert Moderator