how to copy a list to a new list, or retrieve list by value in c#

后端 未结 7 2108
死守一世寂寞
死守一世寂寞 2021-01-03 22:06

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

7条回答
  •  独厮守ぢ
    2021-01-03 22:52

    I want to retrieve the list by value to be able to remove items before displaying them,

    var newlist = oldList.Where().ToList();
    

提交回复
热议问题