Hello,
since I am using Visual Studio 2005 with C++/CLI I noticed some odd behavior of VA X.
1) Missing tooltips of abstract classes
If I have an abstract class, VA X does no have all the info about this class and its members.
-> Abstract classes are underlined as wrong symbols (not anytime, but often)
-> Intellisense does not bold the non-inherited members
-> I only get tooltips if I hover over a symbol of an abstract class. But there are no tooltips which describe a method's signature if I hit Shift+Ctrl+Space inside of brackets...
public ref class MyClass abstract
{
public:
static void DoStuff(int x) {}
};
int main(void)
{
MyClass::DoStuff(|) // (Cursor) - no tooltips on Shift+Ctrl+Space
}
If I remove the abstract keyword, VA X has all the info I expect.
public ref class MyClass
{
public:
static void DoStuff(int x) {}
};
2) Missing Intellisense of native types
If I have an integer variable, I don't get intellisense support for that.