Convierta la matriz de cadenas a enumerar

string[] arr = ...
List<string> list = new List<string>(arr);
DreamCoder