P
parag_paul@hotmail.com
Guest
hi All,
I saw the the following example for a dynamic array initialization in
SV
string d[1:5] = '{ "a", "b", "c", "d", "e" };
string p[];
p = { d[1:3], "hello", d[4:5] };
is the concat operator correct for the array?
Should it not be the concat operator. Where do you chose to use the
plain concat operator and where do you decide to use the array literal.
I saw the the following example for a dynamic array initialization in
SV
string d[1:5] = '{ "a", "b", "c", "d", "e" };
string p[];
p = { d[1:3], "hello", d[4:5] };
is the concat operator correct for the array?
Should it not be the concat operator. Where do you chose to use the
plain concat operator and where do you decide to use the array literal.