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())
or
myList.Select(i => i.ToString());