List A = new List();
A.Add("Apple");
A.Add("Banana");
A.Add("Pineapple");
dataGridView.DataSource = a;
Result: is the length of each item in the list rather than Item itself.
5
6
9
How can I make datagridView to display string instead of length.