List去重的实现 List<T> 当T为值类型的时候 去重比较简单,当T为引用类型时,一般根据业务需要,根据T的中几个属性来确定是否重复,从而去重。 查看System.Linq下的Enumerable存在 ...