Find、FindAll、Where的区别

Find、FindAll是一个List<T>的方法,返回一个new List<T>包括符合条件的数据

Where是一个linq方法,适用于任意继承了IEnumerable接口的类型,返回的是实例而不是new一个。

原文地址:https://www.cnblogs.com/dengshaojun/p/3951925.html