关于[Writing More Succinct C#]的摘要:
When looking at a lot of C# code nowadays, I find myself thinking "wow, that code could be made SO MUCH SMALLER!". C# is a very flexible language, allowing you to write clean and functional code, but also very bloated code. There are a lot of things in the C# language that can help writing more succinct code - some older (like LINQ), and some which have been added in newer versions of C#. In this blog post, I'll talk through some of them. But let's start with a side-by-side example to add a bit of context to what I mean by smaller code...