I have a class like this:
public ref class Test { public: property int MyProperty; };
It works. Now I want to move the implementation of MyProperty to a CPP file. I get compiler errors that the property is already defined when I do this:
int Test::MyProperty::get() { return 0; }
What is the correct syntax for this?
windows-8 windows-runtime c ++ - cx
Skrymsli
source share