System.Types.TStringDynArray
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.