I'm trying to pass in an array to this dropdownlist in my Partial View:
<%
Html.DropDownList(Model.Name, Model.Options);
%>
The options are comma separated of course. It's expecting an IEnumerable so not sure what I'm missing here. It's not accepting the array.