Full rundown of new features in C# 14 for .NET 10 Developers. 0:00 intro 0:13 Null-conditional assignment 1:10 field keyword 2:40 User-defined compound assignment operators 4:20 Extension members 5:50 nameof supports unboard generic types Corrections: 3:48 You could always do this statically, the improvement is now using void on the instance. The following is now possible in C# 14: public class Channel { public int Subscribers { get; set; } public int Members { get; set; } public void operator ++() { Subscribers++; Members++; } public void operator +=(int amount) { Subscribers += amount; Members += amount; } } See this blog post for the full code: https://www.edandersen.com/p/c-14s-be... The best courses for .NET developers ➡ https://dometrain.edandersen.com ⭐ #csharp #dotnet #coding