G
Guest
My problem is I am trying to migrate code from Version 6.0 C++ to C++ .NET
managed code and cannot figure out the __gc syntax for a pointer to an array
of pointers.
In C++ I can declare an object pointer type to an array of object pointers
like this.
In my .h file I declare
CAssemFloat **floatPtr;
In the cpp file I would create the array by
floatPtr = new CAssemFloat *[numberOfFloatIn];
There must be a way to garbage collect pointer to pointers in managed C++
..NET.
I appreciate any help,
Thank you
managed code and cannot figure out the __gc syntax for a pointer to an array
of pointers.
In C++ I can declare an object pointer type to an array of object pointers
like this.
In my .h file I declare
CAssemFloat **floatPtr;
In the cpp file I would create the array by
floatPtr = new CAssemFloat *[numberOfFloatIn];
There must be a way to garbage collect pointer to pointers in managed C++
..NET.
I appreciate any help,
Thank you