Category Debugging

Visual Studio 2019 – What’s new

April 2, 2019! Visual Studio 2019 is out. Amazing news. What to expect? A lot of things. I hope you can take some time and check by yourself. Among other things, we will have support for: Improved IntelliSense performance for C++ files Local development with many common emulators Simplified test access in Solution Explorer Git management and repo creation in the […]

Variables Scope

I love reading the book Code Complete, by Steve McConnell. The following comes from it, in its Chapter 10: General issues in using variables. ………. “Scope” is a way of thinking about a variable’s celebrity status: how famous is it? Scope, or visibility, refers to the extent to which your variables are known and can be […]