How to bind a List<string[]> to a gridview?

Pavequaxpep

New Member
I can't find an answer anywhere... I have a List<string[]> populated like this:\[code\]...while (myReader.Read()){ string[] row = new string[myInt]; for (int i = 0; i < myInt; i++) { row = myReader.ToString(); } myList.Add(row); }...\[/code\]How do I bind this list to a gridview with TemplateField columns?
 
Back
Top