Every time I try to write something, IntelliSense freezes Visual Studio and I have to wait like 2 minutes for it to show code completion list. The only way I can work with is turning it completly off. **`
I'开发者_JS百科ve already installed the last IntelliSense patch from Microsoft but the problem doesn't seem to have gotten any better.
Anyone had the same issue or knows what might be the problem? I'm using C#. I have a freshly installed version of Visual Studio 2010 RC, with no ReSharper, on a clean formated computer.
Thanks
Sounds like you are using UIA 2.0 (the default on XP and maybe Vista, I think). If possible, can you try upgrading to UIA 3.0?
The problem is that UIA 2.0 doesn't support virtualization, so the (rather large) completion lists have automation peers created for each item, and the algorithm that does this doesn't scale very well. UIA 3.0 supports virtualization, so only the list items that are visible have automation peers created.
Possibly it's this bug:
https://blogs.msdn.com/visualstudio/archive/2010/02/09/intellisense-crash-in-ui-automation.aspx
If so, there's a patch available on that page.
精彩评论