Having a property in my .h file I am not being able to get VA to move the implementation to the source file, its simply not available.
property bool IsConnected
{
bool get()
{
if(1 == 1)
return true;
return false;
}
}
Is that by design or an oversight? Or my fault?