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


Google Launches Genkit For Go
24/07/2024

Google has announced Genkit for Go, an open source framework for building AI-powered applications and cloud services natively in Go. Google says that it combines Go's performance and concurrency advan [ ... ]



Devoxx UK Sessions Now Available Online
19/07/2024

The sessions from this year's British branch of the premier Java developer community conference, are now available online, for free.


More News

kotlin book

 

Comments




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

<ASIN:1871962714>

Last Updated ( Monday, 03 June 2024 )