Below is my code to load xml into xml document.
                filestream = File.OpenRead("Application Data\MSP\XMLDATA.XML")
                myXmlDoc = New XmlDocument
                myXmlDoc.Load(filestream)
But it throws out of memory exception. Is there is any way to load xml into xmldocument partially? or How can I solve this.
 
    