Class StringSafeDictionary<TValue>
Safe dictionary indexed by string
public class StringSafeDictionary<TValue> : SafeDictionary<string, TValue>, ICloneThreadItem, IGeneralIndexable<string, TValue>, IGeneralIndexable
Type Parameters
TValue
- Inheritance
-
objectHashtableSafeDictionary<string, TValue>StringSafeDictionary<TValue>
- Implements
-
IGeneralIndexable<string, TValue>
- Derived
- Inherited Members
- Extension Methods
Constructors
StringSafeDictionary()
Default constructor, creates case insensitive dictionary
public StringSafeDictionary()
StringSafeDictionary(bool)
Constructor
public StringSafeDictionary(bool caseSensitive)
Parameters
caseSensitive
boolIf true, the access to the dictionary is case sensitive
StringSafeDictionary(IDictionary, bool)
Constructor.
public StringSafeDictionary(IDictionary d, bool caseSensitive = false)
Parameters
d
IDictionarySource data dictionary
caseSensitive
boolIf true, the access to the dictionary is case sensitive
StringSafeDictionary(IDictionary, IEqualityComparer)
Constructor.
public StringSafeDictionary(IDictionary d, IEqualityComparer comparer)
Parameters
d
IDictionarySource data dictionary
comparer
IEqualityComparerEquality comparer for items
Methods
Clone()
Clones the dictionary
public override object Clone()
Returns
- object