Search⌘ K
AI Features

Hot Reloading During Development

Explore how to use hot reload during C# development to instantly apply and test code changes without restarting your application. This lesson teaches you to set up and use hot reload in Visual Studio and Visual Studio Code, helping you debug and iterate more efficiently.

Hot reload is a feature that allows a developer to apply changes to code while the app is running and immediately see the effect. This is great for fixing bugs quickly. Hot reload is also known as “Edit and Continue.” A list of the types of changes that we can make that support Hot reload can be read.

Hot reload using the command line

Just before the release of .NET 6, a high-level Microsoft team member ...