General tips for Visual Studio 2022
Enable C# code suggestions
Tools → Options → IntelliCode → `C# Suggestions`
Enable GitHub Copilot Completions
Tools → Options → Github → Copilot → `Enable Copilot Completions`
Specify project pathA path to the project can be specified upon project creation
Write notes in commented-out lines in projects → additionally / optionally link said notes or copy them in a code-notes page here in Notion
<aside>
💡 To comment out lines in VSCode simply add //
at the beginning of a line eg.
//this line has been commented-out
example of uncommented code:
this line has not been commented-out and will be applied in the code structure
</aside>
Use Breakpoints effectively
<aside> Click in the left margin (gray area) or press F9 to set a breakpoint Press F5 to run in debug mode - program will pause at breakpoints Right-click breakpoints to set conditions (e.g., break when x > 10)
</aside>
Master the Watch WindowDebug > Windows > Watch > Watch 1 to monitor variable values while debugging
Learn Debug Controls
<aside> F10 - Step over (execute current line) F11 - Step into (go inside method calls) F5 - Continue to next breakpoint
</aside>
Common Mistakes to Watch For
<aside>
</aside>
Use Error List WindowView > Error List to see all compilation errors and warnings
Follow the 40-20-40 Rule
<aside>
</aside>
Document Your CodeAdd comments to explain complex logic and maintain readability