Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Are there a way to insert a SelectListItem at the begining of a SelectList without creating a new list. Don't like the idea to iterate list if not nessary!

Edit: Need to clarify, MySelectList is of Object SelectList, Not List or Enumerate. (else it would be ez)

Something like: (This doesen't work)

SelectList MySelectList = new SelectList(SomeList, "Value", "Text");

MySelectList.Insert(0, new SelectListItem() { Text = "", Value = "" }); 

Instead of:

SelectList MySelectList = new SelectList(SomeList, "Value", "Text");

MySelectList.ToList().Insert(0, new SelectListItem() { Text = "", Value = "" });
MySelectedList = new SelectList(MySelectList, "Value", "Text");
share|improve this question
1  
Have you tried your first option? It will work. Read this msdn.microsoft.com/en-us/library/sey5k5z4 – Nikhil Agrawal Aug 8 '12 at 9:18
Sorry, not that I asked for, but if it was a list it would have helped. I thought to my self that if I name it MySelectList ppl would know it's of Type SelectList. Sorry my mistake! – hellur Aug 8 '12 at 10:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.