I am trying to define a dynamic array in Embarcadero C++Builder 10.2 Tokyo. I have tried to use a lot of different syntaxes, but I always get an error.
My latest idea is copied from an Embarcadero example. I copied this example from the help:
typedef DynamicArray< DynamicArray < AnsiString > > T2DStringArray;
And tried to compile it, but I receive this error:
[bcc32 Error] Comm.cpp(10): E2257 error, expected at first '<' sign...
How can I define a dynamic array type, when the help description and example is wrong? Where am I making a mistake?