2025-04-07 csharp-14csharpdotnet C# 14: nameof support for unbound generic types C# 14 enhances the nameof expression to support unbound generic types like List<> and Dictionary<,>, eliminating the need for placeholder type arguments.
2025-04-06 csharp-14csharpdotnet Implicit Span conversions in C# 14 – First-class support for Span and ReadOnlySpan C# 14 adds built-in implicit conversions between Span, ReadOnlySpan, arrays, and strings, enabling cleaner APIs, better type inference, and fewer manual AsSpan() calls.
2025-04-05 csharp-14csharpdotnet C# 14 – The field keyword and field-backed properties C# 14 introduces the field contextual keyword for property accessors, letting you add custom logic to auto-properties without declaring a separate backing field.
2024-12-01 csharp-14csharpdotnet What’s new in C# 14.0 A summary of all new features in C# 14.0, including the field keyword, extension members, null-conditional assignment, implicit span conversions, and more.