Splitting a large XML file in two using C# console app?

The "best" way is likely to be based on XmlReader and XmlWriter . Using these "streaming" APIs avoids needing to load the whole XML object model in memory (and with DOM – XmlDocument – that can need considerably more memory than the text data).

You might want to consider making a full copy of the file and then deleting elements from each. You will have to decide at what level the deletions could occur.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions