Does VAX support creating implementations on properties? For example, I get a menu w/o "Create Implementation when I hover over the "int get();" in the code below:
ref class Foo
{
public:
Foo(int val) : value(val) {}
property int Value
{
int get();
}
private:
int value;
};
The implemenation should be:
int Foo::Value::get()
{
return value;
}