Is there a way to serialize a CodeCompileUnit object as XML.
The problem is that:
XmlSerializer xml = new XmlSerializer( typeof(CodeCompileUnit) );
throws the following exception:
"It is not possible to serialize a member of System.CodeDom.CodeObject.UserData of type System.Collections.IDictionary because it implements IDictionary."
source
share