Represents a xml serializable collection of keys and values.

Namespace: CodeSmith.Engine
Assembly: CodeSmith.Engine (in CodeSmith.Engine.dll) Version: 6.0.0.0 (7.0.0.15127)

Syntax

C#
[SerializableAttribute]
public class SerializableDictionary<TKey, TValue> : Dictionary<TKey, TValue>, 
	IXmlSerializable
Visual Basic
<SerializableAttribute>
Public Class SerializableDictionary(Of TKey, TValue)
	Inherits Dictionary(Of TKey, TValue)
	Implements IXmlSerializable

Type Parameters

TKey
The type of the keys in the dictionary.
TValue
The type of the values in the dictionary.

Inheritance Hierarchy

System..::..Object
  System.Collections.Generic..::..Dictionary<(Of <(<'TKey, TValue>)>)>
    CodeSmith.Engine..::..SerializableDictionary<(Of <(<'TKey, TValue>)>)>

See Also