[This is preliminary documentation and is subject to change.]
Author: Đonny
Provides HashTable designed for storing only keys and quickly testing if key is in collection or not
Namespace: Tools.CollectionsT.GenericTAssembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)
Syntax
| C# |
|---|
public class HashTable<T> : ICollection<T> |
| Visual Basic |
|---|
Public Class HashTable(Of T) _ Implements ICollection(Of T) |
| Visual C++ |
|---|
generic<typename T> public ref class HashTable : ICollection<T> |
| F# |
|---|
type HashTable<'T> = class interface ICollection<'T> end |
| JScript |
|---|
|
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "T:Tools.CollectionsT.GenericT.HashTable`1"]
Remarks
Internally uses Dictionary<(Of <(<'TKey, TValue>)>)>. Can be used as List of unique items.
Inheritance Hierarchy
See Also
Version History
1.5.2
- (RC) VersionAttribute and AuthorAttribute removed