Often I want to be explicit in code which exact type is being used, but I'd like the IDE to help me figure it out and type it for me. 'auto' does pretty much all of that for me, except that it takes away the explicitness.
It would be perfect if I could just type
auto a = someFunc();
then point at the 'auto' and let Visual Assist replace it by whatever type was deduced, so that I get the actual non-auto C++ code
SomeComplicatedType* a = someFunc();
Cheers,
Jan.