Class TStringHashtable

Declaration
TStringHashtable = class(THashtable)
  constructor Create;
  destructor Destroy;
  function Get(Key: String): TObject;
  function HasKey(Key: String): Boolean;
  procedure Put(Key: String; Value: TObject);
  function RemoveKey(Key: String): TObject;
end;
Description

Hashtable to store key-value pairs. The key is an string and the value an object of type TObject.


Method TStringHashtable.Create

Declaration
constructor Create;
Description



Method TStringHashtable.Destroy

Declaration
destructor Destroy;
Description



Method TStringHashtable.Get

Declaration
function Get(Key: String): TObject;
Description



Method TStringHashtable.HasKey

Declaration
function HasKey(Key: String): Boolean;
Description



Method TStringHashtable.Put

Declaration
procedure Put(Key: String; Value: TObject);
Description



Method TStringHashtable.RemoveKey

Declaration
function RemoveKey(Key: String): TObject;
Description