string[] dataRows = new string[] { "one", "two", "three" }; List<string> dataRowList = new List<string>(dataRows.Length); dataRowList.AddRange(dataRows);
string[] dataRows = new string[] { "one", "two", "three" }; List<string> dataRowList = dataRows.ToList();
Login to post response