tags:

views:

76

answers:

1

How can I databind a string array (string[]) to a dropdownlist?

Does it implement iEnumerable?

+6  A: 

Yes, and yes. All arrays implement IEnumerable<T>, and as such are valid data-sources for data-binding.

Andrew Hare