Is there a way to convert a List(of Object) to a List(of String) in c# or vb.net without iterating through all the items? (Behind the scenes iteration is fine – I just want concise code)
Update: The best way is probably just to do a new select
myList.Select(function(i) i.ToString()).ToList();
or
myList.Select(i => i.ToString()).ToList();