System.IniFiles.THashedStringList

From RAD Studio API Documentation
Jump to: navigation, search

System.Classes.TStringListSystem.Classes.TStringsSystem.Classes.TPersistentSystem.TObjectTHashedStringList

Delphi

THashedStringList = class(TStringList)

C++

class PASCALIMPLEMENTATION THashedStringList : public System::Classes::TStringList

Properties

Type Visibility Source Unit Parent
class public
System.IniFiles.pas
System.IniFiles.hpp
System.IniFiles System.IniFiles

Description

THashedStringList maintains a list of strings using an internal hash table.

THashedStringList is a string list that uses a hash table internally to speed the process of locating strings. It is used internally by TMemIniFile to manage the strings from an INI file, but can be used in the same way as any other string list. By using THashedStringList instead of TStringList, you can improve performance when the list contains a large number of strings.

See Also