How to get IntelliSense to reliably work in Visual Studio 2008

后端 未结 12 1571
暗喜
暗喜 2020-12-08 04:13

Does anyone know how to get IntelliSense to work reliably when working in C/C++ projects? It seems to work for about 1 in 10 files. Visual Studio 2005 seems to be a lot bett

12条回答
  •  一向
    一向 (楼主)
    2020-12-08 04:49

    About this problem i've notice something interesting (on Visual Studio 2010): to solve this problem i've changed #include sintax in my header files, before was (old project done with VS 2005 and reopened using VS 2010):

    #include  
    

    and i fix this with:

    #include "myfile.h"
    

    After intellisense start working correctly! I hope this can help!

提交回复
热议问题