Is there a way in Delphi declaring an array of strings such as following one?
{'first','second','third'}
try this
Const Elements =3; MyArray : array [1..Elements] of string = ('element 1','element 2','element 3');
2.1m questions
2.1m answers
60 comments
57.0k users