Table of Contents

Class TwoLevelDictionary<PrimaryKeyType, SecondaryKeyType, ValueType>

Namespace
CMS.Base
Assembly
CMS.Base.dll

Dictionary with two levels of hierarchy

public class TwoLevelDictionary<PrimaryKeyType, SecondaryKeyType, ValueType>

Type Parameters

PrimaryKeyType
SecondaryKeyType
ValueType
Inheritance
object
TwoLevelDictionary<PrimaryKeyType, SecondaryKeyType, ValueType>
Extension Methods

Constructors

TwoLevelDictionary()

Constructor

public TwoLevelDictionary()

TwoLevelDictionary(bool)

Constructor

public TwoLevelDictionary(bool caseSensitive)

Parameters

caseSensitive bool

If true, the dictionary is case sensitive

Properties

CaseInsensitive

If true, the dictionary handles string keys as case insensitive

public bool CaseInsensitive { get; protected set; }

Property Value

bool

Dictionary

Inner dictionary of dictionaries

protected SafeDictionary<PrimaryKeyType, SafeDictionary<SecondaryKeyType, ValueType>> Dictionary { get; }

Property Value

SafeDictionary<PrimaryKeyType, SafeDictionary<SecondaryKeyType, ValueType>>

this[PrimaryKeyType]

Gets the second level of dictionary based on the given key

public SafeDictionary<SecondaryKeyType, ValueType> this[PrimaryKeyType primaryKey] { get; set; }

Parameters

primaryKey PrimaryKeyType

Primary key

Property Value

SafeDictionary<SecondaryKeyType, ValueType>

this[PrimaryKeyType, SecondaryKeyType]

Gets or sets the dictionary value

public ValueType this[PrimaryKeyType primaryKey, SecondaryKeyType secondaryKey] { get; set; }

Parameters

primaryKey PrimaryKeyType

Primary key

secondaryKey SecondaryKeyType

Secondary key

Property Value

ValueType

Methods

Clear()

Clears the dictionary

public void Clear()