Member-only story
C# 10 is here! This is what’s new!
Welcome back! C# is a very popular programming language used for tons of projects, if you’re new to C#, check out the link below to learn more:
Today, C#’s next iteration, C# 10, actually got announced! The C# team also created a release log with all of the improvements of this new version of C#, check out the link below to view this release log:
Let’s cover some of my favorite updates to this language!
Improvements For Lambda Expressions
This new update of C# brings some updates to our lambdas, specifically with creating target types for us if we don’t specify one:
var parse = (string s) => int.Parse(s);
They also mention that this will bring natural types of lambdas to weaker types (like objects or Delegate):