I have a Method :
public void setCells(ArrayList<String> loc)
Which i need to call using :
string[] locations = {"1","2","3"};
example.setCells(locations);
But i'm not able to pass the String array to the array list.
How can i solve this problem ?
Thanks