Serializable Dictionary

It's common knowledge that System.Collections.Generic.Dictionary is not serializable. But, there is an interesting post in Paul Welter's blog at

http://weblogs.asp.net/pwelter34/archive/2006/05/03/444961.aspx.

The custom class extends the Dictionary class by implementing the IXmlSerializable interface. This is good Paul...!