[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Creates a new OrderedDictionary. The passed delegate will be used to compare keys in this dictionary.
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
| C# |
|---|
public OrderedDictionary(
Comparison<TKey> comparison
) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _
comparison As Comparison(Of TKey) _
) |
| Visual C++ |
|---|
public:
OrderedDictionary (
Comparison<TKey>^ comparison
) |
Parameters
- comparison
- Comparison<(Of <TKey>)>
A delegate to a method that will be used to compare keys.
See Also