This might seem crazy in C# with properties but because I'm coding in mixed mode my class properties might be wrappers to extern variables in unmanaged code. Might just be an issue of style, I'm still working on the kinks of my knowledge of mixed mode development.
Right now I can't Move Implementation to Source File or Create Implementation for this class on the properties.
Header File
public ref class MyCrazyClass
{
public:
property String ^NextPointID
{
void set(String ^val);
String ^get();
}
In my CPP file I have to manually type out
void MyCrazyClass::NextPointID::set(String ^val)
{
...// do what needs doing
}
String ^MyCrazyClass::NextPointID::get()
{
...// return whats needed
}
Thanks
Mark