The Portrate Interview Engine

LinkedHashtable Class

A hashtable that preserves the order in which the values are added. When you get the list of values or keys, the list will be in the same order in which they were added, while still preserving the hashtable's performance when querying by key.

            Author Jacob W Anderson Date 09 Jan 2003 Version $Revision: 1.2 $ 

For a list of all members of this type, see LinkedHashtable Members.

System.Object
   System.Collections.Hashtable
      Portrate.Interview.Util.LinkedHashtable

[Visual Basic]
Public Class LinkedHashtable
    Inherits Hashtable
[C#]
public class LinkedHashtable : Hashtable
[C++]
public __gc class LinkedHashtable : public Hashtable
[JScript]
public class LinkedHashtable extends Hashtable

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Requirements

Namespace: Portrate.Interview.Util

Assembly: Portrate.Interview (in Portrate.Interview.dll)

See Also

LinkedHashtable Members | Portrate.Interview.Util Namespace