I'm working on a little web project and would like to read/write to an XML file. Performance is my first priority.
I've come to this great post on comparing the mentioned approaches except XMLSerializer.
I prefer XML Serializer since it makes the code much cleaner. But i don't know about its performance. What kind does XMLSerializer use inside to write to XML files? (So I can easily use it to write to my xml files)
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
As for the performance of XmlSerializer, see http://msdn.microsoft.com/en-us/library/182eeyhh.aspx which says:
So you can increase performance of XmlSerializer by making use of the sgen tool http://msdn.microsoft.com/en-us/library/bk3w6240.aspx, that way you can avoid the performance hit you get when new XmlSerializer() creates and compiles C# files. |
|||
|
|
XmlReaderwill be faster than any serializer. – Oded♦ Dec 21 '10 at 15:22