Skip to content

Instantly share code, notes, and snippets.

@vgerbase
Created May 26, 2020 16:44
Show Gist options
  • Save vgerbase/9608c7f572cb3f9d2fe54d1176b7e2bc to your computer and use it in GitHub Desktop.
Save vgerbase/9608c7f572cb3f9d2fe54d1176b7e2bc to your computer and use it in GitHub Desktop.
Serialize object to XML in Visual Studio immediate window while debugging
(new System.Xml.Serialization.XmlSerializer(obj.GetType())).Serialize(new System.IO.StreamWriter(@"C:\Temp\obj.xml"), obj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment