SyntaxFix
Write A Post
Hire A Developer
Questions
You could do something like this
String[] myStrings = { "One", "Two", "Three" };
or in expression
functionCall(new String[] { "One", "Two", "Three" });
or
String myStrings[]; myStrings = new String[] { "One", "Two", "Three" };