- int? a = (new List<int>{2}).Select(x => x).FirstOrDefault();
- // 2
- int? b = (new List<int>{}).Select(x => x).FirstOrDefault();
- // 0
- int? c = (new List<int>{2}).Select(x => (int?)x).FirstOrDefault();
- // 2
- int? d = (new List<int>{}).Select(x => (int?)x).FirstOrDefault();
- // null
2014-02-10 23:43
[C#] 對 FirstOrDefault 新的認識
FirstOrDefault 會依據最後的型別去決定 Default 時回傳的值,例如下面的範例:
相關文章 :
- 架構解釋
- C# MVC 的 UserException 攔截處理
- 用 Exception 作為使用者錯誤訊息的通道
- 重構基礎-邏輯反相
- 全域的 Exception 處理
- [Python] Flask Log 配置
- [Python] Flask 自訂日期的 Json 轉換
- [Python] Flask MySQL 連線管理
- [Python] Flask 錯誤處裡
- 週期性執行的子執行緒範本
- 讓 Net core 3.1 的 PageModel handler 可以用 AuthorizeAttribute
- 讓 Net core 3.1 的 PageModel 可以用 POST 的參數決定 handler
- LINQ 方法解釋一覽
- [C#] 對 FirstOrDefault 新的認識
- [C#] 用 LINQ 將字串切割成整數陣列
- [C#] 利用 LINQ 解析 XML 至 POCO
訂閱:
張貼留言 (Atom)
0 回應:
張貼留言