A simple class that stores Strings as char[]'s in a hash table. Note that this is not a general purpose class. For example, it cannot remove items from the set, nor does it resize its hash table to be smaller, etc. It is designed to be quick to test if a char[] is in the set without the necessity of converting it to a String first.

Namespace: Lucene.Net.Analysis
Assembly: Lucene.Net (in Lucene.Net.dll) Version: 2.9.4.1

Syntax

C#
public class CharArraySet : Hashtable
Visual Basic
Public Class CharArraySet _
	Inherits Hashtable
Visual C++
public ref class CharArraySet : public Hashtable

Inheritance Hierarchy

System..::..Object
  System.Collections..::..Hashtable
    Lucene.Net.Analysis..::..CharArraySet

See Also