We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.
The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ...
Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.
Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.
Please Wait For Loading
Discover What’s New in C# 13: Exciting Features and Enhancements
.NET 9 was released on May 21, 2024.
.NET 9 was released on May 21, 2024.
A while ago, we talked about the new features introduced in .NET 8 – a worthy successor to .NET 6?
It hasn’t been long, and we already have .NET 9. Let’s talk about new interesting features.
How to test C# 13 (.NET 9)?
Normally, when we try to build application
We will get an error
Following error message we have to change .csproj file
Original .csproj file
Final version
After this modification, the application builds successfully.
Implicit index access
This feature is useful when we are using arrays with a known size.
The code
Until now, we could do something like this.
But now we are available to do something like this
Python provides elements from the end of a collection by using negative indices (-1, -2, etc.). In C#, we can do the same by using the “^” operator, but until now we weren’t able to use it in initializer expression.
I don’t know of any case where I would use it, but now this limitation is gone.
Enhancements to Extensions
The code
Above is a simple example of existing extensions. What improvements can we make in .NET 9 and C# 13?
The CalculateArea method is good, and we have nothing to change here.
The CalculateDiagonal method would be clearer and more intuitive if it were a property, not a method. With C# 13 we can do that!
The code
This part of code extends the Square class with an attribute called Diagonal. What’s interesting is that we can extend everything, even types not owned (for example, from NuGet packages).
You can track the progress on Language Feature Status.
You can read more about C# 13 at: https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-13
Archives
Understanding K-Nearest-Neighbors (KNN) – Essential Machine Learning Algorithm
2024-10-06A Step-by-Step Guide to Web Scraping for Beginners
2024-07-12Categories
Meta