In Managed C++, if you simply declare an instance of an object using:
CObject cobj;
Does this actually implicitly create an instance of CObject on the managed heap? Or can that only be explicitly done using gcnew?
CObject cobj;
Does this actually implicitly create an instance of CObject on the managed heap? Or can that only be explicitly done using gcnew?
