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.<
The following should work fine.
string[] arr = new string[] {""};