Questions tagged [xml-serialization]

This label pertains to methods of serialization that utilize XML as a formatting for data.

Tips for converting Anonymous-typed Objects to XML format

Is it possible to convert a dynamically created object into an XML string? var foobar = new { foo = "bar" }; string xml = ConvertToXMLString(foobar); //the generated XML should look similar to: //<foo>bar</foo> I have explored using both XML ...