¿Cómo se declara un array de tipo cadena en C#?
string myArray[5];
var myArray = new string[];
string[] myArray;