Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Simplified Collection initialization

I have the string values, I just want to set them in a list. Something like -

List<string> tempList = List<string>();
tempList.Insert(0,"Name",1,"DOB",2,"Address");

I guess I am having a brain freeze :)

share|improve this question
you mean adding multiple element using single statement/ – Waqas Aug 31 '11 at 19:44
Provided sample will not even compile since Insert has only 2params. – Tomas Voracek Aug 31 '11 at 19:47
Waqas - Yes, that was what I was looking for. djacobson - Apologies, I just had a freeze and figure I would get a quick help answer. – MrM Aug 31 '11 at 19:47
@Tomas - Consider that he wants "something like" his code. – Greg Aug 31 '11 at 19:47
@TomasVoracek: It was not supposed to compile... – H.B. Aug 31 '11 at 19:47

marked as duplicate by Dan J, Greg, Andrey, H.B., Mark Aug 31 '11 at 19:56

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 14 down vote accepted
var tempList = new List<string> { "Name", "DOB", "Address" };

With the collection initializer syntax, you don't even need the explicit calls to Add() or Insert(). The compiler will put them there for you.

The above declaration is actually compiled down to:

List<string> tempList = new List<string>();
tempList.Add("Name");
tempList.Add("DOB");
tempList.Add("Address");
share|improve this answer
I did not know that the two examples you gave were equivalent. I thought that the first snippet would be more efficient since it knows how much memory to initially allocate. – Marlon Aug 31 '11 at 19:56
1  
@Marlon You would think so, but consider that what's is really happening is that you're calling the default constructor, and then adding a bunch of items. It's also legal to say new List<string>(16) { "OneItem" }, which would contruct the list with capacity 16 and a single stored item. I guess the designers assumed that since you knew how many items there were, you could always just put the number in yourself. – dlev Aug 31 '11 at 19:58

You can initialize a list with data like so:

var list = new List<string> { "foo", "bar", "baz" };

share|improve this answer

You can also use AddRange which would accomplish the same thing if the list already exists:

List<string> tempList = new List<string>();
tempList.AddRange( new string[] {"Name", "DOB", "Address"} ); 
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.