Download an ASP.NET Core application in .NET 9 and try out its key new features such as HybridCache, OpenAPI support and new LINQ methods.
Download C# 13 code examples which includes all the new features so you can try them out for yourself and see what has changed from previous C# versions.
Download a .NET SignalR example which adds a hub that sends messages to clients when one is connected and when a method is invoked.
A Geolocation code example in ASP.NET Core which uses IP lookup to find the client's location so you know which country they are located.
Download an ASP.NET Core Stripe checkout example that uses the Stripe.net NuGet package to take online payments through a Web API endpoint.
Download an xUnit and a .NET class library project that uses the Moq mocking framework to mock objects as part of unit tests.
Download an xUnit test project to help you unit test your C# code in a .NET project. It includes Fact and Theory examples alongside different Assert methods.
Get started with EF Core includes creating a DbContext, adding a migration, CRUD operations, the Include method, raw SQL queries and stored procedures.
Download an ASP.NET Core Web API code example which includes endpoints for each of the CRUD methods (Create, Read, Update and Delete).
An ASP.NET Core Web API code example which includes the new data annotations for .NET 8 such as AllowedValues and Length.