vote up 2 vote down star
1
int[] mylist = { 2, 4, 5 };
IEnumerable<int> list1 = mylist;
list1.ToList().Add(1);
// why 1 does not get addedto list1??
flag

67% accept rate

2 Answers

vote up 18 vote down check

Why would it? ToList() generates a new List and the value '1' gets added to it. Since you don't store the return, the new list then gets tossed when it's out of scope.

ToList() doesn't change the original IEnumerable object list1 or give a new representation (it would be called AsList() if it did).

link|flag
IEnumerable<int> newList = list1.ToList().Add(1); // The code you want – jrcs3 Jan 5 '09 at 3:05
This is like the commonly made first timer mistake with String.Replace(). – Kev Jan 5 '09 at 4:08
Not quite the same mistake as String.Replace(). The string class is immutable and the List is not. So while .Replace() is creating a new string .Add() is actually adding to a List object. But it's the List created from ToList() and not the original array. – Joseph Daigle Jan 5 '09 at 6:21
vote up 1 vote down

You need to :

int[] mylist = { 2, 4, 5 };
IEnumerable<int> list1 = mylist;
List<int> lst = list1.ToList();
lst.Add(1);
mylist = lst.ToArray();
link|flag
Or just "List<int> lst = myList.ToList();". The IEnumerable variable is not needed. – Hosam Aly Jan 5 '09 at 14:59
That's right Hosam, I just appended to his code to make it simpler. – Andrei Rinea Jan 5 '09 at 23:31

Your Answer

Get an OpenID
or

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