Info |
---|
I will be using Visual Studio Community |
Installing Visual Studio (VS)
From a search engine search for “visual studio community”. In the search results select “Visual Studio Community 2019 - Free IDE and Developers Tools
...
On this last window for the Target Framework select .NET 5.0 (Current), then select Create
...
VS will create your project, you are ready to go
...
Running and Debugging within VS
Place a breakpoint at line 9 (click on the left border)
...
To start debugging select Debug/Start Debugging (or press F5)
...
VS will build the application and then begin to run stopping at the breakpoint
Use the debug control bar to step through the code
...