I have an IList returning from a function (as variable lst) and I set and then I
IList
this.dataGridView1.DataSource = lst; >
this.dataGridView1.DataSource = lst;
You really need a list of objects that have a string property. With .NET 3.5 you could cheat:
.DataSource = list.Select(x=>new {Value = x}).ToList();
Otherwise create a dummy class and copy the data in manually...