mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
8 lines
237 B
C#
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);
|
|||
|
|
}
|