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?
arr, the garbage collector will do a lot better job of that than you will. – Mike Christensen Apr 12 '12 at 18:20