Microsoft Reveals Preview C#13 Features
Written by Kay Ewbank   
Monday, 03 June 2024

Microsoft has announced details of what will be included in C# 13. The news was announced at Microsoft's recent Build conference. The new version will have enhanced parameters, extension types, and several features to enhance performance.

The most noticeable change will be that params are no longer limited to arrays. Describing the change, Microsoft says that it's still the case that when the params keyword appears before a parameter, calls to the method can provide a comma delimited list of zero or more values and those values are placed in a collection of the parameter's type.

c

However, starting in C# 13, the params parameter type can be any of the types used with collection expressions, like List<T>, Span<T>, and IEnumerable<T>. You can even use your own collection types if they follow special rules. The ability to use the Span type improves performance because it reduces memory use.

The next change of note is the addition of extension types, though this feature isn't included in the current preview.  Extension methods have been supported since C#3, and can be used to add methods to an underlying type, even if you cannot change its code. C# 13 will add extension types, a new kind of type that supplies extension members for an underlying type, and that are intended for uses such as having an underlying type that you can't change the code of, but you want to make changes. 

Extension types have methods, properties and other members that can be instance or static. Microsoft says there will be two kinds of extension types: implicit and explicit extensions. Implicit extension types apply to all occurrences of the underlying type – in the same way extension methods do today. Explicit extension methods and properties apply only to instances of the underlying type that have been converted to the explicit extension type.

Other improvements to C# 13 will include a lock statement pattern designed to make C# more in line with .NET 9's new dedicated System.Threading.Lock type; and improvements to the method group natural type.

C# is part of the .NET SDK.

c

 

More Information

C# New Features On GitHub

Related Articles

C# 12 Simplifies Syntax

.NET Conf 2023 Was A Blast!

.NET 8 Released 

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Human Programmer Outwits OpenAI's o3
23/07/2025

The 2025 AtCoder World Finals Heuristic Contest was billed a Human vs AI showdown. It is difficult to know which was the more important - that it was Psyho, a Polish human programmer, who to [ ... ]



Linux Passes 5% Milestone
22/07/2025

Latest figures from StatCounter show that Linux achieved a 5.03% share of the Desktop Operating System market in June 2025, something that is being viewed as a pivotal moment for open-source soft [ ... ]


More News

pico book

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Monday, 03 June 2024 )