Hello,
When programming in C++/CLI, I noticed that VA.X incorrectly determines the class name of "abstract" or "sealed" classes:
public ref class Arc sealed : public Shape
{
public:
void test();
};
When clicking on "test()" and selecting "Create Implementation", VA.X generates:
void sealed::test()
{
}
- Daniel