I need to declare an empty string array and i\'m using this code
string[] arr = new String[0]();
But I get \"method name expected\" error.<
Those curly things are sometimes hard to remember, that's why there's excellent documentation:
// Declare a single-dimensional array int[] array1 = new int[5];