XmlDocument.InnerXml is null, but InnerText is not
- by Adam Neal
I'm using XmlDocument and XmlElement to build a simple (but large) XML document that looks something like:
<Widgets>
<Widget>
<Stuff>foo</Stuff>
<MoreStuff>bar</MoreStuff>...lots more child nodes
</Widget>
<Widget>...lots more Widget nodes
</Widgets>
My problem is…