[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.GenericT
Assembly: 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
JScript does not support generic types or methods.

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

System..::..Object
  Tools.CollectionsT.GenericT..::..HashTable<(Of <(<'T>)>)>

See Also

Collapse/expand Version History

1.5.2