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');
1.4m articles
1.4m replys
5 comments
57.0k users