My drop down code is currently below and I know what I need is in this format:
IEnumerable<SelectListItem> selectlist
What I'm currently using is this code and I need to convert it to the ienumerable selectlistitem with the following information
<select id="paperStyle" name="paperStyleList">
<option selected="selected" value="">Select Style</option>
<option value="APA">APA</option>
<option value="Chicago">Chicago</option>
<option value="Harvard">Harvard</option>
<option value="MLA">MLA</option>
<option value="Oxford">Oxford</option>
</select>