Hello
Is there anyway to move a string array elements to a vector and have an output that list these elements?
Let's say the array contains the following elements
String arraySize[] = {"A", "B", "C", "D", "E"};
and I want to move these elements to a vector.. How would I do it? Oh and I have to use array.Length to get the size
And this is what I am planning to do
for (int Counter =0; Counter < Arraysize.Length; counter ++)
{
VectorName.add(arraySize);
}
It won't work though.. It will through an exception.
I will really appreciate your help if you help me.