Binding DataGridView to Generic SortedList (WinForms)
For example, given:
SortedList<string, Customer> CList;
where the string is LastName from the Customer class. This would order the Customers by Last Name.
I want to display the Customer's public gettor fields automatically in a DataGridView control ordered by the LastName field which is the Key portion of the SortedList.
Is this possible? It's a bit difficult to tell from whats posted on the web. If so, a code sample would be greatly appreciated.
Thanx,
Garth

