Sitecore 5.0 API

StringHashtable Class

Maintains a Hashtable of strings.

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

System.Object
   Sitecore.Collections.StringHashtable

[Visual Basic]
Public Class StringHashtable
[C#]
public class StringHashtable

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.

Example

  StringHashtable table = new StringHashtable();
  table["myKey"] = "Hello world";
  int count = table.Count; // 1
  string myValue = table["myKey"]; // "Hello world"

Requirements

Namespace: Sitecore.Collections

Assembly: Sitecore.Kernel (in Sitecore.Kernel.dll)

See Also

StringHashtable Members | Sitecore.Collections Namespace