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.
constructor Create;Description
destructor Destroy;Description
function Get(Key: String): TObject;Description
function HasKey(Key: String): Boolean;Description
procedure Put(Key: String; Value: TObject);Description
function RemoveKey(Key: String): TObject;Description