StreamReader reader = new StreamReader(Server.MapPath("~/App_Data/country.csv"));
List<SelectListItem> searchList = new List<SelectListItem>();
while (!reader.EndOfStream)
{
var line = reader.ReadLine();
searchList.Add(new SelectListItem() { Value = line, Text = line });
}
// searchList will hold all the values of the CSV