PreviousNext

C# 9.0 Primary constructors

by miguelbernard, 2020-08-11T15:39:50.120Z

C# 9.0 now introduces a new simplified way to construct your classes. Most constructors are very redundant as the arguments of the constructor map one to one with a property of the same name. There's now a way to get rid of all that extra code.

Read More