A generic dictionay that can be xml serialized. This code was copied mostly whole from Paul Welter's Weblog

Namespace:  VideoRay.Util
Assembly:  vrLib (in vrLib.dll) Version: 2.0.0.0 (2.0.0.0)

Syntax

C#
public class SerializableDictionary<TKey, TValue> : Dictionary<TKey, TValue>, 
	IXmlSerializable
Visual Basic (Declaration)
Public Class SerializableDictionary(Of TKey, TValue) _
	Inherits Dictionary(Of TKey, TValue) _
	Implements IXmlSerializable
Visual C++
generic<typename TKey, typename TValue>
public ref class SerializableDictionary : public Dictionary<TKey, TValue>, 
	IXmlSerializable

Type Parameters

TKey
Type for key
TValue
Type for value

Inheritance Hierarchy

System..::.Object
  System.Collections.Generic..::.Dictionary<(Of <(TKey, TValue>)>)
    VideoRay.Util..::.SerializableDictionary<(Of <(TKey, TValue>)>)

See Also