IntelliSense in Visual Studio 2010 RC Freeze

Every time I try to write something, IntelliSense freezes Visual Studio, and I have to wait 2 minutes for it to display a code completion list. The only way I can work with is to completely disable it. ** `

I already installed the latest IntelliSense patch from Microsoft, but the problem did not seem to improve.

Has anyone had the same problem or does she know what could be the problem? I am using C #. I have a recently installed version of Visual Studio 2010 RC without ReSharper on a clean, educated computer.

thanks

+4
source share
2 answers

It looks like you are using UIA 2.0 (default on XP and possibly Vista). If possible, can you try upgrading to UIA 3.0 ?

The problem is that UIA 2.0 does not support virtualization, so automatic peers are created for each item in the completion lists (large enough), and the algorithm that does this does not scale very well. UIA 3.0 supports virtualization, so only the list items that are visible are created by automatic peers.

+1
source

Source: https://habr.com/ru/post/1301407/


All Articles