When working in my C++/CLI code, I often hit an issue with VAX where the class I want isn't suggested.
Consider this screenshot of C++/CLI code in a function.
I was expecting the suggestion of "Debug" as in System::Diagnostics::Debug so that I can type Debug::WriteLine(...) but it suggests DEBUG from atldef.h which I don't really want. When I press the colon it autocompletes to DEBUG which I have to Ctrl+Z and fix all the time.