Thursday, December 18, 2003

.NET XML Serialization Bug There is a bug in .NET's XML Serialization routines that can serialize an object to XML which will subsequently throw an exception when you attempt to deserialize it. This happens when a string that is being serialized contains an unprintable character like char(1). This will get serialized to , but fail on deserialization :-( The following code will reproduce this... (316 words, 12 Comments)