2020-12-06-泛型別簡介2 發表於 2020-12-06 更新於 2021-03-23 文章字數: 292 所需閱讀時間 ≈ 1 分鐘 繼續來介紹泛型別方法Find 和 Enumerable.Where 方法 參考資料:C# Linq where的用法 Where 方法123List<Test> list = new List<Test>();list = list.where( a => a.test.Contains(Name)).ToList(); Find 方法會返回整個List中的第一個匹配元素, 找不到傳回 null 123List<Test> list = new List<Test>();list = list.Find( a => a.test.Contains(Name)).ToList();