BLOGS BY TOPIC▼
BLOGS BY AUTHOR▼
BLOGS BY YEAR▼
Posted by Andy Brown on 21 January 2022
You need a minimum screen resolution of about 700 pixels width to see our blogs. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
Upgrading to Visual Studio 2022
Visual Studio 2022 is now a 64-bit application, which means that it will run more quickly (so say Microsoft). It also supports the .NET 6 framework, Azure and C++.
I can't say I've noticed any particular speed improvements in upgrading from Visual Studio 2019 to 2022, but then again I didn't experience any adverse effects from the upgrade either.
The big thing that the user (that's you, and me) will notice is that Intellisense is more pervasive. Here are some examples. First, Microsoft guessing what values you want to test for in a switch statement:

Just press the Tab key to put this line in.
Here's Visual Studio guessing what variable I'm trying to create:

Often you can press Tab once or twice, depending on how much of the suggested line you want to take.
Visual Studio tries hard to help you write get / set clauses for public properties:

Intellisense trying to help with the WidgetName property.
A couple of keystrokes later and you'll get this:

More help on the same property!
I hope this has been enough to give you the idea. As to whether it's helpful or not ...
I'm not 100% convinced either way about this. Sometimes it can save a bit of typing, but because you have to take a moment to think about the suggested corrections, if you're a touch typist it doesn't necessarily save you any time. Kudos to Microsoft for trying to help though.