System.Types.TClassicStringDynArray
Delphi
TClassicStringDynArray= array of string;
C++
typedef System::DynamicArray<System::UnicodeString> TClassicStringDynArray;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
array typedef |
public | System.Types.pas System.Types.hpp |
System.Types | System.Types |
Description
TClassicStringDynArray defines an array of String elements.
TClassicStringDynArray is an alias for array of string
and can be used for older code that needs compatibility with previous definitions of TStringDynArray.
Tip: This type can be used for an array of strings in C++ WebServices.