I would like to pass a string array as a parameter to a function. Please look at the code below
String[] stringArray = {\'a\', \'b\', \'c\', \'d\', \'e\'};
I believe this should be the way this is done...
public void function(String [] array){ .... }
And the calling will be done like...
public void test(){ String[] stringArray = {"a","b","c","d","e","f","g","h","t","k","k","k","l","k"}; function(stringArray); }