If I have a "fake" Visual C++ property:
int _declspec( property( get = GetFoo ) ) Foo;
int GetFoo() const { ... }
Is there any way to get the debugger to evaluate this and display it as a normal member variable in the QuickWatch window?
If I have a "fake" Visual C++ property:
int _declspec( property( get = GetFoo ) ) Foo;
int GetFoo() const { ... }
Is there any way to get the debugger to evaluate this and display it as a normal member variable in the QuickWatch window?