PreviousNext

C# 9.0: Target-typed expression

by miguelbernard, 2020-09-16T18:33:33.071Z

In this article, we'll take a look at the new Target-typed capabilities in C# 9.0. Target-typed means that the compiler will now infer the type from the context; thus, you won't have to specify it explicitly. It helps simplify your code and make it more readable.

Read More