cs11dotnet7/vscode/Chapter04/HotReloading/Program.cs
2022-03-15 08:17:56 +00:00

8 lines
237 B
C#

/* Visual Studio: run the app, change the message, click Hot Reload button.
* Visual Studio Code: run the app using dotnet watch, change the message. */
while (true)
{
WriteLine("Goodbye, Hot Reload!");
await Task.Delay(2000);
}