string[] mylist = new string[5]; //Declaring the string array;//Assigning values to each element in the array mylist[0] = "Hello"; mylist[1] = "how"; mylist[2] = "are"; mylist[3] = "you"; mylist[4] = "?";//Creating a new List<T> of type <string> List<string> StringtoList = new List<string>(mylist.Length);//AddRange is a method of List<T> objects that enables the conversion.//We just need to pass the reference to the array. StringtoList.AddRange(mylist);