Martin,
This is an excellent suggestion. I'd go even further to say that casting operators should always appear in suggestion lists (currently it's hit or miss), and that they should autocomplete with the angle brackets and parentheses. Ideally, type this code:
Foo* pFoo = static_c
and be given this suggestion:
static_cast<Foo*>()
with the caret positioned inside the parentheses
I've also requested the same logic when casting to an expected parameter type:
void MyFunction(Foo* pFoo){}
Void Bar()
{
MyFunction(dynamic_c // at this point, offer suggestion dynamic_cast<Foo*>()
}
case=7519