I'd like to read in the following XML:
<node></node>
And then write it out, minified, like this:
<node/>
Obviously this has the same meaning, but the second file is smaller for sending across the wire.
I'm trying to find a way to do this in .NET. I can't seem to find an option or setting that would drop unnecessary closing tags.
Suggestions?