System.Types.TStringDynArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

type TStringDynArray = array of string;

Properties

Type Visibility Source Unit Parent
array public System.Types.pas System.Types System.Types

Description

TStringDynArray defines an array of String elements.

TStringDynArray array is an alias for TArray<string> and can be used in newer code. You can use SetLength to allocate storage for such an array.

See Also