Binding DataGridView to Generic SortedList (WinForms)

I want to bind a DataGridView to the collection of objects contained in a Generics SortedList so they display in the correct order.

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

[649 byte] By [GarthK] at [2007-12-16]