How can I see the XML contents of fully populated XmlWriter object while debugging. My silverlight application doesn’t permit to actually write to a file and check the contents.
How can I see the XML contents of fully populated XmlWriter object while debugging.
Share
You can create the XmlWriter based on a MemoryStream, then unencode the bytes from the memory stream and display it in a text box, for example.