VB2012 I have a class which I am serializing to a file as such
Dim fileXml As String = "C:\out.xml"
swXml = New StreamWriter(fileXml)
Dim serXml As New XmlSerializer(nzp.GetType)
serXml.Serialize(swXml, nzp)
This all works great except there is one field that is a System.Drawing.Color and that doesn't get saved. Does serialization only work for basic types? How do I get the framework to save more complex types?