I have the below string declaration and i am using the string in for loop:
String[] values = new String["A","B","C"]
for (int i = 0, length = values.length; i < length; i++)
{
getData(values[i], i, length);
}
Throwing an error "unexpected token: = @" at for loop line.