How can Container content be rendered in a C# Windows Application?
I have a C# WinForms Application with a Collection (ArrayList) whose content I want to view in a Grid and want to find an easy wa开发者_如何学Cy to do this.
Well, tough without specifics, but you could loop through the arraylist and put the data into a DataTable, then bind that DataTable to a GridView control.
精彩评论