How can I bind an array of strings ( string[] ) to dropdownlist ?
string[]
dropdownlist
Does he use iEnumerable ?
iEnumerable
Yes and yes. All arrays implement IEnumerable<T> and, as such, are valid data sources for data binding.
IEnumerable<T>