Learn about the new features in .NET 9 and find links to further documentation.
.NET 9, the successor to .NET 8, has a special focus on cloud-native apps and performance. It will be supported for 18 months as a standard-term support (STS) release. You can download .NET 9 here.
New for .NET 9, the engineering team posts .NET 9 preview updates on GitHub Discussions. That's a great place to ask questions and provide feedback about the release.
.NET runtime
The .NET 9 runtime includes a new attribute model for feature switches with trimming support. The new attributes make it possible to define feature switches that libraries can use to toggle areas of functionality.
Garbage collection includes a dynamic adaptation to application size feature that's used by default instead of Server GC.
The runtime also includes numerous performance improvements, including loop optimizations, inlining, and Arm64 vectorization and code generation.
System.Text.Json adds support for nullable reference type annotations and exporting JSON schemas from types. It adds new options that let you customize the indentation of written JSON and read multiple root-level JSON values from a single stream.
In LINQ, the new methods CountBy and AggregateBy make it possible to aggregate state by key without needing to allocate intermediate groupings via GroupBy.
For cryptography, .NET 9 adds a new one-shot hash method on the CryptographicOperations type. It also adds new classes that use the KMAC algorithm.
For reflection, the new PersistedAssemblyBuilder type lets you save an emitted assembly. This new class also includes PDB support, meaning you can emit symbol info and use it to debug a generated assembly.
The TimeSpan class includes new From* methods that let you create a TimeSpan object from an int (instead of a double). These methods help to avoid errors caused by inherent imprecision in floating-point calculations.
The .NET 9 SDK introduces workload sets, where all of your workloads stay at a single, specific version until explicitly updated. For tools, a new option for dotnet tool install lets users (instead of tool authors) decide whether a tool is allowed to run on a newer .NET runtime version than the version the tool targets. In addition:
Unit testing has better MSBuild integration that allows you to run tests in parallel.
The terminal logger is enabled by default and also has improved usability. For example, the total count of failures and warnings is now summarized at the end of a build.
New MSBuild script analyzers ("build checks") are available.
The SDK can detect and adjust for version mismatches between the .NET SDK and MSBuild.
The dotnet workload history command shows you the history of workload installations and modifications for the current .NET SDK installation.
.NET 9 introduces a unified layer of C# abstractions through the Microsoft.Extensions.AI and Microsoft.Extensions.VectorData packages. These abstractions facilitate interaction with AI services, including small and large language models (SLMs and LLMs), embeddings, vector stores, and middleware.
.NET 9 also includes new tensor types that expand AI capabilities. TensorPrimitives and the new Tensor<T> type expand AI capabilities by enabling efficient encoding, manipulation, and computation of multi-dimensional data. You can find these types in the latest release of the System.Numerics.Tensors package.
TensorPrimitives
Expanded method scope: Increased from 40 to nearly 200 overloads, now including numerical operations similar to Math, MathF, and INumber<T> but for spans of values.
Performance enhancements: Many operations are now SIMD-optimized for better performance.
Generic overloads: Supports any type T that implements a certain interface, expanding beyond just spans of float values in .NET.
Tensor<T>
Builds on top of TensorPrimitives for efficient math operations.
Provides efficient interop with AI libraries (ML.NET, TorchSharp, ONNX Runtime) using zero copies where possible.
Enables easy and efficient data manipulation with indexing and slicing operations.
The Microsoft.ML.Tokenizers library provides .NET developers with capabilities for encoding and decoding text to tokens. For AI scenarios, this is important to manage context, calculate cost, and preprocess text when working with local models.
The latest release introduces significant new capabilities for tokenizers:
Tiktoken for GPT (3, 3.5, 4, 4o, o1) and Llam3 models
Llama (based on SentencePiece) for Llama and Mistral models
CodeGen for code-generation models like codegen-350M-mono
Phi2 (based on CodeGen) for Microsoft Phi2 model
WordPiece
Bert (based on WordPiece) for Bert-supported models like optimum--all-MiniLM-L6-v2
.NET Aspire
.NET Aspire is a set of powerful tools, templates, and packages for building observable, production ready apps. .NET Aspire's latest release includes improvements to the dashboard and resource lifecycle management. It also adds new integrations and APIs for more flexibility during development. .NET Aspire 9 works with both .NET 9 and .NET 8 apps. For more information, see What's new in .NET Aspire 9.
ASP.NET Core
ASP.NET Core apps built with .NET 9 are secure by default, have expanded support for ahead-of-time compilation, and have improved monitoring and tracing. With the performance improvements, you'll see higher throughput and faster startup time, and all with less memory usage. ASP.NET Core in .NET 9 includes:
Optimized handling of static files, like JavaScript and CSS, at build and publish time with automatic fingerprinted versioning.
Blazor: New Hybrid and Web app templates, detection of component render mode, new reconnection experience with server rendering.
APIs: Built in support for OpenAPI document generation using Microsoft.AspNetCore.OpenAPI, enhanced native AOT support.
Improved security with new APIs for authentication and authorization.
Easier setup for trusted development certificate on Linux to enable HTTPS during development.
These are just some of the features and enhancements in .NET 9. For more information, see What's new in ASP.NET Core 9.0.
.NET MAUI
The focus of .NET Multi-platform App UI (.NET MAUI) in .NET 9 is enhanced performance and reliability, and deeper integrations for desktop and mobile applications. .NET MAUI includes a new, more performant implementation of CollectionView and CarouselView for iOS and Mac Catalyst, updates to existing controls, new app lifecycle events, and Native AOT and trimming enhancements to improve app size and startup time. In addition:
A new TitleBar desktop control is available for Windows.
A new HybridWebView control enables easier inclusion of JavaScript-enabled content from frameworks like ReactJS, Vue.js, and Angular.
Entity Framework Core includes significant updates to the database provider for Azure Cosmos DB for NoSQL. It also includes some steps towards AOT compilation and pre-compiled queries, among other improvements. For more information, see What's New in EF Core 9.
C# 13
C# 13 ships with the .NET 9 SDK and includes the following new features:
params collections
New lock type and semantics
New escape sequence - \e
Method group natural type improvements
Implicit indexer access in object initializers
Enable ref locals and unsafe contexts in iterators and async methods
Enable ref struct types to implement interfaces
Allow ref struct types as arguments for type parameters in generics.
Partial properties and indexers are now allowed in partial types.
Overload resolution priority allows library authors to designate one overload as better than others.
In addition, C# 13 adds a preview feature: field backed properties.
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Build end-to-end solutions in Microsoft Azure to create Azure Functions, implement and manage web apps, develop solutions utilizing Azure storage, and more.