Month: November 2022
The new .NET 7.0 IParsable<TSelf> interface
As I explained in the post C# 11 static abstract members, C# 11 let’s write static abstract members in interface. This feature was mostly introduced to implement the new .NET...
C# 11 required members
C# 11 proposes the new keyword required that can apply to an instance property or an instance field declaration within a class, a record or a struct. [crayon-650c2c1b3b25f536334464/] This keyword...