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.

I've seen examples of this done using .ToList on array types, this seems to be available only in .Net 3.5+. I'm working with a 2.0 framework on an asp.net project that can't be upgraded at this time, so I was wondering: Is there is another solution? One that is more elegant than looping through the array and adding each element to this List (which is no problem; I'm just wondering if there is a better solution for learning purposes)?

List<string> openItems = new List<string>();
string[] arr = lblHidFieldOpenItems.Text.Split(',').ToList();
foreach (string arrItem in arr)
    openItems.Add(arrItem);

If I have to do it this way, is there a way to deallocate the lingering array from memory after I create my List?

share|improve this question
Don't worry about cleaning up your arr, the garbage collector will do a lot better job of that than you will. – Mike Christensen Apr 12 '12 at 18:20
Me specifically.. or developers in general? – Shredder Apr 26 at 14:50
You specifically. And me. In fact, I think only Jon Skeet is allowed to do his own garbage collection. – Mike Christensen Apr 26 at 18:59

1 Answer

up vote 30 down vote accepted

Just use the List<T>'s constructor. It accepts any IEnumerable<T>:

string[] arr = ...
List<string> list = new List<string>(arr);
share|improve this answer
1  
Seriously? wow lol, thanks! – Shredder Apr 12 '12 at 18:21
Glad I could help. Consider marking this answer as accepted. – Shedal Apr 12 '12 at 18:29
8  
Patience, sir ;) had to wait for accepted lockdown – Shredder Apr 12 '12 at 18:35

Your Answer

 
discard

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

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