The website I am working on will contain a drop-down list that shows a number of reason codes.
Is it possible to populate a drop-down list with an array derived from
Just a thought, but how about:
this.ddlReasonsWhy.Items.Add(reasonsList.getReasons().Select(r => new ListItem(r)));