Add items to end of selectlist
c#
Solution
// Create a list from the result of GetStates
var states = svc.GetStates(user.Login, user.Password).ToList();
// Add whatever you like
states.Add(...);
// Create the SelectList
m.StateList = new SelectList(states, "Key", "Value");
Problem
I need to manually add a few items to the end of a selectlist that was already created. Here is the code for the selectlist: ``` m.StateList = new SelectList(svc.GetStates(user.Login, user.Password), "Key", "Value"); ``` Can someone tell me how I can add a few more items to that list? I have done plenty of searching.