Date: 2022-11-15

【本系列是我的 C# in Depth 第四版讀書筆記,背景故事在這裡】 C# 7 提供三種導入區域變數的新做法:Destruction (解構)、Pattern、Out 變數 解構是指將 Tuple 的元素拆解回獨立變數,C# 7 加入了簡潔寫法,深得我心,例如: var tuple = (10,...