whenever I convert a DatSet to XML with a DataSet.GetXml, any null value is ignored, so where I expect this:
<value1>a</value1> <value2></value2> <value3>c</value3>
I get this instead:
<value1>a</value1> <value3>c</value3>
What would be a quick and dirty way to handle this? Thanks
EDIT: I think the solution will use WriteXml. Can someone provide me with a sample of using it WITHOUT writing to a file, but get a string like GetXml does? Thanks
source share