I noticed in c# there is a method for Lists: CopyTo -> that copies to arrays, is there a nicer way to copy to a new list? problem is, I want to retrieve the list by value to
Just create a new List and use the appropriate constructor:
List
IList<Obj> newList = new List<Obj>(oldList);